1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-01-31 09:57:14 +01:00

Use modern header includes.

This commit is contained in:
Sandu Liviu Catalin 2020-04-27 11:08:32 +03:00
parent df7c5f8266
commit e2e671a13a
3 changed files with 32 additions and 30 deletions

View File

@ -43,10 +43,10 @@
*----------------------------------------------------------------------------*/ *----------------------------------------------------------------------------*/
#pragma once #pragma once
#include <stddef.h> #include <cstddef>
#include <stdint.h> #include <cstdint>
#include <assert.h> #include <cassert>
#include <limits.h> #include <climits>
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
/* */ /* */

View File

@ -47,43 +47,45 @@
#endif #endif
#include <sys/stat.h> #include <sys/stat.h>
#include <stdlib.h> #include <cstdlib>
#include <stdio.h> #include <cstdio>
#include <stdarg.h> #include <cstdarg>
#include <errno.h> #include <cerrno>
#if defined(_LINUX) || defined (_DARWIN) #if defined(_LINUX) || defined (_DARWIN)
#include <sys/socket.h> #include <sys/socket.h>
#include <netinet/in.h> #include <netinet/in.h>
#include <arpa/inet.h> #include <arpa/inet.h>
#include <netinet/tcp.h> #include <netinet/tcp.h>
#include <netinet/ip.h> #include <netinet/ip.h>
#include <netdb.h> #include <netdb.h>
#endif #endif
#ifdef _LINUX #ifdef _LINUX
#include <linux/if_packet.h> #include <linux/if_packet.h>
#include <linux/if_ether.h> #include <linux/if_ether.h>
#include <linux/if.h> #include <linux/if.h>
#include <sys/sendfile.h> #include <sys/sendfile.h>
#endif #endif
#ifdef _DARWIN #ifdef _DARWIN
#include <net/if.h> #include <net/if.h>
#endif #endif
#if defined(_LINUX) || defined (_DARWIN) #if defined(_LINUX) || defined (_DARWIN)
#include <sys/time.h> #include <sys/time.h>
#include <sys/uio.h> #include <sys/uio.h>
#include <unistd.h> #include <unistd.h>
#include <fcntl.h> #include <fcntl.h>
#endif #endif
#ifdef _WIN32 #ifdef _WIN32
#include <io.h> #include <io.h>
#include <winsock2.h> #include <winsock2.h>
#include <Ws2tcpip.h> #include <Ws2tcpip.h>
#define IPTOS_LOWDELAY 0x10
#define IPTOS_LOWDELAY 0x10
#endif #endif
#include "HostConf.h" #include "HostConf.h"
#include "StatTimer.h" #include "StatTimer.h"

View File

@ -46,7 +46,7 @@
#if _WIN32 #if _WIN32
#include <Winsock2.h> #include <Winsock2.h>
#include <time.h> #include <ctime>
#endif #endif
#ifdef _LINUX #ifdef _LINUX