mirror of
https://github.com/wangyu-/udp2raw.git
synced 2025-01-19 14:29:34 +08:00
deleted useless headers
This commit is contained in:
parent
e6f0ed035c
commit
b9030fe81d
50
log.h
50
log.h
@ -2,56 +2,8 @@
|
|||||||
#ifndef _LOG_MYLOG_H_
|
#ifndef _LOG_MYLOG_H_
|
||||||
#define _LOG_MYLOG_H_
|
#define _LOG_MYLOG_H_
|
||||||
|
|
||||||
#include<stdio.h>
|
|
||||||
#include<string.h>
|
|
||||||
#include<sys/socket.h>
|
|
||||||
#include<arpa/inet.h>
|
|
||||||
#include<stdlib.h>
|
|
||||||
#include<getopt.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include<errno.h>
|
|
||||||
|
|
||||||
#include <fcntl.h>
|
#include<common.h>
|
||||||
//#include"aes.h"
|
|
||||||
|
|
||||||
#include <sys/epoll.h>
|
|
||||||
#include <sys/wait.h>
|
|
||||||
|
|
||||||
#include<map>
|
|
||||||
#include<string>
|
|
||||||
#include<vector>
|
|
||||||
|
|
||||||
|
|
||||||
#include <sys/socket.h> //for socket ofcourse
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <stdlib.h> //for exit(0);
|
|
||||||
#include <errno.h> //For errno - the error number
|
|
||||||
#include <netinet/tcp.h> //Provides declarations for tcp header
|
|
||||||
#include <netinet/udp.h>
|
|
||||||
#include <netinet/ip.h> //Provides declarations for ip header
|
|
||||||
#include <netinet/if_ether.h>
|
|
||||||
#include <arpa/inet.h>
|
|
||||||
#include <fcntl.h>
|
|
||||||
#include <byteswap.h>
|
|
||||||
#include <sys/socket.h>
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <arpa/inet.h>
|
|
||||||
#include <linux/if_ether.h>
|
|
||||||
#include <linux/filter.h>
|
|
||||||
|
|
||||||
#include <sys/time.h>
|
|
||||||
#include <time.h>
|
|
||||||
|
|
||||||
#include <sys/timerfd.h>
|
|
||||||
#include <set>
|
|
||||||
#include "encrypt.h"
|
|
||||||
#include <inttypes.h>
|
|
||||||
|
|
||||||
#include <sys/ioctl.h>
|
|
||||||
#include <netinet/in.h>
|
|
||||||
#include <net/if.h>
|
|
||||||
#include <arpa/inet.h>
|
|
||||||
#include <stdarg.h>
|
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
|
1
main.cpp
1
main.cpp
@ -2,6 +2,7 @@
|
|||||||
#include "network.h"
|
#include "network.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "lib/md5.h"
|
#include "lib/md5.h"
|
||||||
|
#include "encrypt.h"
|
||||||
|
|
||||||
char local_ip[100]="0.0.0.0", remote_ip[100]="255.255.255.255",source_ip[100]="0.0.0.0";
|
char local_ip[100]="0.0.0.0", remote_ip[100]="255.255.255.255",source_ip[100]="0.0.0.0";
|
||||||
u32_t local_ip_uint32,remote_ip_uint32,source_ip_uint32;
|
u32_t local_ip_uint32,remote_ip_uint32,source_ip_uint32;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user