mirror of
https://github.com/wangyu-/UDPspeeder.git
synced 2025-01-31 12:19:35 +08:00
fix compile error on freebsd
This commit is contained in:
parent
4292123100
commit
7e6cb5c7e6
@ -417,7 +417,7 @@ void signal_handler(int sig)
|
|||||||
about_to_exit=1;
|
about_to_exit=1;
|
||||||
// myexit(0);
|
// myexit(0);
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
int numbers_to_char(id_t id1,id_t id2,id_t id3,char * &data,int &len)
|
int numbers_to_char(id_t id1,id_t id2,id_t id3,char * &data,int &len)
|
||||||
{
|
{
|
||||||
static char buf[buf_len];
|
static char buf[buf_len];
|
||||||
@ -444,7 +444,7 @@ int char_to_numbers(const char * data,int len,id_t &id1,id_t &id2,id_t &id3)
|
|||||||
id3=ntohl( *((id_t*)(data+sizeof(id_t)*2)) );
|
id3=ntohl( *((id_t*)(data+sizeof(id_t)*2)) );
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
bool larger_than_u32(u32_t a,u32_t b)
|
bool larger_than_u32(u32_t a,u32_t b)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
14
common.h
14
common.h
@ -23,9 +23,9 @@
|
|||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <stdlib.h> //for exit(0);
|
#include <stdlib.h> //for exit(0);
|
||||||
#include <errno.h> //For errno - the error number
|
#include <errno.h> //For errno - the error number
|
||||||
#include <netinet/tcp.h> //Provides declarations for tcp header
|
//#include <netinet/tcp.h> //Provides declarations for tcp header
|
||||||
#include <netinet/udp.h>
|
//#include <netinet/udp.h>
|
||||||
#include <netinet/ip.h> //Provides declarations for ip header
|
//#include <netinet/ip.h> //Provides declarations for ip header
|
||||||
//#include <netinet/if_ether.h>
|
//#include <netinet/if_ether.h>
|
||||||
#include <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
@ -33,7 +33,7 @@
|
|||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#include <netinet/in.h>
|
//#include <netinet/in.h>
|
||||||
#include <net/if.h>
|
#include <net/if.h>
|
||||||
#include <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
@ -127,7 +127,7 @@ extern working_mode_t working_mode;
|
|||||||
extern int socket_buf_size;
|
extern int socket_buf_size;
|
||||||
|
|
||||||
|
|
||||||
typedef u32_t id_t;
|
//typedef u32_t id_t;
|
||||||
|
|
||||||
typedef u64_t iv_t;
|
typedef u64_t iv_t;
|
||||||
|
|
||||||
@ -223,8 +223,8 @@ unsigned short csum(const unsigned short *ptr,int nbytes);
|
|||||||
unsigned short tcp_csum(const pseudo_header & ph,const unsigned short *ptr,int nbytes);
|
unsigned short tcp_csum(const pseudo_header & ph,const unsigned short *ptr,int nbytes);
|
||||||
|
|
||||||
void signal_handler(int sig);
|
void signal_handler(int sig);
|
||||||
int numbers_to_char(id_t id1,id_t id2,id_t id3,char * &data,int &len);
|
//int numbers_to_char(id_t id1,id_t id2,id_t id3,char * &data,int &len);
|
||||||
int char_to_numbers(const char * data,int len,id_t &id1,id_t &id2,id_t &id3);
|
//int char_to_numbers(const char * data,int len,id_t &id1,id_t &id2,id_t &id3);
|
||||||
|
|
||||||
void myexit(int a);
|
void myexit(int a);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user