MXS-2205 Convert modules/protocol/HTTPD/httpd.h to .hh

This commit is contained in:
Esa Korhonen 2018-12-03 14:28:59 +02:00
parent 5f7211aac5
commit df9fbdd31a
2 changed files with 12 additions and 22 deletions

View File

@ -34,7 +34,7 @@
#define MXS_MODULE_NAME "HTTPD"
#include "httpd.h"
#include "httpd.hh"
#include <ctype.h>
#include <maxscale/alloc.h>
#include <maxscale/protocol.h>

View File

@ -1,6 +1,5 @@
#pragma once
#ifndef _HTTPD_H
#define _HTTPD_H
/*
* Copyright (c) 2016 MariaDB Corporation Ab
*
@ -14,27 +13,20 @@
* Public License.
*/
/*
* Revision History
*
* Date Who Description
* 08-07-2013 Massimiliano Pinto Added HTTPD protocol header file
*/
#include <maxscale/cdefs.h>
#include <maxscale/ccdefs.hh>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <maxscale/dcb.h>
#include <maxscale/buffer.h>
#include <maxscale/service.hh>
#include <maxscale/session.h>
#include <sys/ioctl.h>
#include <errno.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <maxscale/router.h>
#include <netinet/in.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <maxscale/dcb.h>
#include <maxscale/buffer.hh>
#include <maxscale/service.hh>
#include <maxscale/session.hh>
#include <maxscale/router.hh>
#include <maxscale/poll.h>
#include <maxbase/atomic.h>
@ -68,5 +60,3 @@ typedef struct httpd_session
} HTTPD_session;
MXS_END_DECLS
#endif