MXS-2205 Convert modules/include/cdc.h to .hh

This commit is contained in:
Esa Korhonen
2018-12-03 14:38:02 +02:00
parent df9fbdd31a
commit 72d8ab5220
4 changed files with 14 additions and 24 deletions

View File

@ -1,6 +1,5 @@
#pragma once
#ifndef _CDC_H
#define _CDC_H
/*
* Copyright (c) 2016 MariaDB Corporation Ab
*
@ -14,27 +13,20 @@
* Public License.
*/
/*
* Revision History
*
* Date Who Description
* 11-01-2016 Massimiliano Pinto First Implementation
*/
#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>
@ -88,5 +80,3 @@ typedef struct cdc_protocol
extern int gw_hex2bin(uint8_t* out, const char* in, unsigned int len);
MXS_END_DECLS
#endif