mirror of
https://github.com/wangyu-/udp2raw.git
synced 2025-01-19 14:29:34 +08:00
change client to libev, server doesnt work yet
This commit is contained in:
parent
6718627e9d
commit
233fab4fac
240
client.cpp
240
client.cpp
@ -566,11 +566,28 @@ int client_on_udp_recv(conn_info_t &conn_info)
|
|||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
void udp_accept_cb(struct ev_loop *loop, struct ev_io *watcher, int revents)
|
||||||
int client_event_loop()
|
{
|
||||||
|
conn_info_t & conn_info= *((conn_info_t*)watcher->data);
|
||||||
|
client_on_udp_recv(conn_info);
|
||||||
|
}
|
||||||
|
void raw_recv_cb(struct ev_loop *loop, struct ev_io *watcher, int revents)
|
||||||
|
{
|
||||||
|
//assert(0==1);
|
||||||
|
conn_info_t & conn_info= *((conn_info_t*)watcher->data);
|
||||||
|
client_on_raw_recv(conn_info);
|
||||||
|
}
|
||||||
|
void clear_timer_cb(struct ev_loop *loop, struct ev_timer *watcher, int revents)
|
||||||
|
{
|
||||||
|
conn_info_t & conn_info= *((conn_info_t*)watcher->data);
|
||||||
|
client_on_timer(conn_info);
|
||||||
|
}
|
||||||
|
void fifo_cb(struct ev_loop *loop, struct ev_io *watcher, int revents)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
int client_event_loop()
|
||||||
|
{
|
||||||
char buf[buf_len];
|
char buf[buf_len];
|
||||||
|
|
||||||
conn_info_t conn_info;
|
conn_info_t conn_info;
|
||||||
@ -656,85 +673,20 @@ int client_event_loop()
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
|
|
||||||
address_t new_addr;
|
|
||||||
|
|
||||||
if(!force_source_ip)
|
|
||||||
{
|
|
||||||
mylog(log_info,"get_src_adress called\n");
|
|
||||||
if(retry_on_error==0)
|
|
||||||
{
|
|
||||||
if(get_src_adress2(new_addr,remote_addr)!=0)
|
|
||||||
{
|
|
||||||
mylog(log_fatal,"the trick to auto get source ip failed, maybe you dont have internet access\n");
|
|
||||||
myexit(-1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
int ok=0;
|
|
||||||
while(!ok)
|
|
||||||
{
|
|
||||||
if(get_src_adress2(new_addr,remote_addr)!=0)
|
|
||||||
{
|
|
||||||
mylog(log_warn,"the trick to auto get source ip failed, maybe you dont have internet access, retry in %d seconds\n",retry_on_error_interval);
|
|
||||||
sleep(retry_on_error_interval);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
ok=1;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
new_addr=source_addr;
|
|
||||||
}
|
|
||||||
//in_addr tmp;
|
|
||||||
//tmp.s_addr=source_ip_uint32;
|
|
||||||
mylog(log_info,"source ip = %s\n",new_addr.get_ip());*/
|
|
||||||
//printf("done\n");
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
if(try_to_list_and_bind(bind_fd,local_ip_uint32,source_port)!=0)
|
|
||||||
{
|
|
||||||
mylog(log_fatal,"bind to source_port:%d fail\n ",source_port);
|
|
||||||
myexit(-1);
|
|
||||||
}*/
|
|
||||||
send_info.src_port=0;
|
send_info.src_port=0;
|
||||||
memset(&send_info.new_src_ip,0,sizeof(send_info.new_src_ip));
|
memset(&send_info.new_src_ip,0,sizeof(send_info.new_src_ip));
|
||||||
|
|
||||||
int i, j, k;int ret;
|
int i, j, k;int ret;
|
||||||
|
|
||||||
|
|
||||||
//init_filter(source_port);
|
|
||||||
|
|
||||||
send_info.new_dst_ip.from_address_t(remote_addr);
|
send_info.new_dst_ip.from_address_t(remote_addr);
|
||||||
|
|
||||||
send_info.dst_port=remote_addr.get_port();
|
send_info.dst_port=remote_addr.get_port();
|
||||||
|
|
||||||
//g_packet_info.src_ip=source_address_uint32;
|
|
||||||
//g_packet_info.src_port=source_port;
|
|
||||||
|
|
||||||
udp_fd=socket(local_addr.get_type(), SOCK_DGRAM, IPPROTO_UDP);
|
udp_fd=socket(local_addr.get_type(), SOCK_DGRAM, IPPROTO_UDP);
|
||||||
set_buf_size(udp_fd,socket_buf_size);
|
set_buf_size(udp_fd,socket_buf_size);
|
||||||
|
|
||||||
int yes = 1;
|
|
||||||
//setsockopt(udp_fd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(yes));
|
|
||||||
|
|
||||||
//struct sockaddr_in local_me={0};
|
|
||||||
|
|
||||||
//socklen_t slen = sizeof(sockaddr_in);
|
|
||||||
//memset(&local_me, 0, sizeof(local_me));
|
|
||||||
//local_me.sin_family = AF_INET;
|
|
||||||
//local_me.sin_port = local_addr.get_type();
|
|
||||||
//local_me.sin_addr.s_addr = local_addr.inner.ipv4.sin_addr.s_addr;
|
|
||||||
|
|
||||||
|
|
||||||
if (bind(udp_fd, (struct sockaddr*) &local_addr.inner, local_addr.get_len()) == -1) {
|
if (bind(udp_fd, (struct sockaddr*) &local_addr.inner, local_addr.get_len()) == -1) {
|
||||||
mylog(log_fatal,"socket bind error\n");
|
mylog(log_fatal,"socket bind error\n");
|
||||||
@ -742,30 +694,49 @@ int client_event_loop()
|
|||||||
myexit(1);
|
myexit(1);
|
||||||
}
|
}
|
||||||
setnonblocking(udp_fd);
|
setnonblocking(udp_fd);
|
||||||
epollfd = epoll_create1(0);
|
|
||||||
|
|
||||||
const int max_events = 4096;
|
//epollfd = epoll_create1(0);
|
||||||
struct epoll_event ev, events[max_events];
|
|
||||||
if (epollfd < 0) {
|
|
||||||
mylog(log_fatal,"epoll return %d\n", epollfd);
|
|
||||||
myexit(-1);
|
|
||||||
}
|
|
||||||
|
|
||||||
ev.events = EPOLLIN;
|
//const int max_events = 4096;
|
||||||
ev.data.u64 = udp_fd;
|
//struct epoll_event ev, events[max_events];
|
||||||
ret = epoll_ctl(epollfd, EPOLL_CTL_ADD, udp_fd, &ev);
|
//if (epollfd < 0) {
|
||||||
if (ret!=0) {
|
// mylog(log_fatal,"epoll return %d\n", epollfd);
|
||||||
mylog(log_fatal,"add udp_listen_fd error\n");
|
// myexit(-1);
|
||||||
myexit(-1);
|
//}
|
||||||
}
|
|
||||||
ev.events = EPOLLIN;
|
|
||||||
ev.data.u64 = raw_recv_fd;
|
|
||||||
|
|
||||||
ret = epoll_ctl(epollfd, EPOLL_CTL_ADD, raw_recv_fd, &ev);
|
struct ev_loop * loop= ev_default_loop(0);
|
||||||
if (ret!= 0) {
|
assert(loop != NULL);
|
||||||
mylog(log_fatal,"add raw_fd error\n");
|
|
||||||
myexit(-1);
|
//ev.events = EPOLLIN;
|
||||||
}
|
//ev.data.u64 = udp_fd;
|
||||||
|
//ret = epoll_ctl(epollfd, EPOLL_CTL_ADD, udp_fd, &ev);
|
||||||
|
//if (ret!=0) {
|
||||||
|
// mylog(log_fatal,"add udp_listen_fd error\n");
|
||||||
|
// myexit(-1);
|
||||||
|
//}
|
||||||
|
|
||||||
|
|
||||||
|
struct ev_io udp_accept_watcher;
|
||||||
|
|
||||||
|
udp_accept_watcher.data=&conn_info;
|
||||||
|
ev_io_init(&udp_accept_watcher, udp_accept_cb, udp_fd, EV_READ);
|
||||||
|
ev_io_start(loop, &udp_accept_watcher);
|
||||||
|
|
||||||
|
|
||||||
|
//ev.events = EPOLLIN;
|
||||||
|
//ev.data.u64 = raw_recv_fd;
|
||||||
|
|
||||||
|
//ret = epoll_ctl(epollfd, EPOLL_CTL_ADD, raw_recv_fd, &ev);
|
||||||
|
//if (ret!= 0) {
|
||||||
|
// mylog(log_fatal,"add raw_fd error\n");
|
||||||
|
// myexit(-1);
|
||||||
|
//}
|
||||||
|
|
||||||
|
struct ev_io raw_recv_watcher;
|
||||||
|
|
||||||
|
raw_recv_watcher.data=&conn_info;
|
||||||
|
ev_io_init(&raw_recv_watcher, raw_recv_cb, raw_recv_fd, EV_READ);
|
||||||
|
ev_io_start(loop, &raw_recv_watcher);
|
||||||
|
|
||||||
////add_timer for fake_tcp_keep_connection_client
|
////add_timer for fake_tcp_keep_connection_client
|
||||||
|
|
||||||
@ -774,92 +745,31 @@ int client_event_loop()
|
|||||||
//memset(&udp_old_addr_in,0,sizeof(sockaddr_in));
|
//memset(&udp_old_addr_in,0,sizeof(sockaddr_in));
|
||||||
int unbind=1;
|
int unbind=1;
|
||||||
|
|
||||||
set_timer(epollfd,timer_fd);
|
//set_timer(epollfd,timer_fd);
|
||||||
|
struct ev_timer clear_timer;
|
||||||
|
|
||||||
|
clear_timer.data=&conn_info;
|
||||||
|
ev_timer_init(&clear_timer, clear_timer_cb, 0, timer_interval/1000.0);
|
||||||
|
ev_timer_start(loop, &clear_timer);
|
||||||
|
|
||||||
mylog(log_debug,"send_raw : from %s %d to %s %d\n",send_info.new_src_ip.get_str1(),send_info.src_port,send_info.new_dst_ip.get_str2(),send_info.dst_port);
|
mylog(log_debug,"send_raw : from %s %d to %s %d\n",send_info.new_src_ip.get_str1(),send_info.src_port,send_info.new_dst_ip.get_str2(),send_info.dst_port);
|
||||||
|
|
||||||
int fifo_fd=-1;
|
int fifo_fd=-1;
|
||||||
|
|
||||||
|
struct ev_io fifo_watcher;
|
||||||
|
fifo_watcher.data=&conn_info;
|
||||||
|
|
||||||
if(fifo_file[0]!=0)
|
if(fifo_file[0]!=0)
|
||||||
{
|
{
|
||||||
fifo_fd=create_fifo(fifo_file);
|
fifo_fd=create_fifo(fifo_file);
|
||||||
ev.events = EPOLLIN;
|
|
||||||
ev.data.u64 = fifo_fd;
|
|
||||||
|
|
||||||
ret = epoll_ctl(epollfd, EPOLL_CTL_ADD, fifo_fd, &ev);
|
ev_io_init(&fifo_watcher, fifo_cb, fifo_fd, EV_READ);
|
||||||
if (ret!= 0) {
|
ev_io_start(loop, &fifo_watcher);
|
||||||
mylog(log_fatal,"add fifo_fd to epoll error %s\n",strerror(errno));
|
|
||||||
myexit(-1);
|
|
||||||
}
|
|
||||||
mylog(log_info,"fifo_file=%s\n",fifo_file);
|
mylog(log_info,"fifo_file=%s\n",fifo_file);
|
||||||
}
|
}
|
||||||
while(1)////////////////////////
|
|
||||||
{
|
|
||||||
if(about_to_exit) myexit(0);
|
|
||||||
epoll_trigger_counter++;
|
|
||||||
int nfds = epoll_wait(epollfd, events, max_events, 180 * 1000);
|
|
||||||
if (nfds < 0) { //allow zero
|
|
||||||
if(errno==EINTR )
|
|
||||||
{
|
|
||||||
mylog(log_info,"epoll interrupted by signal,continue\n");
|
|
||||||
//close(fifo_fd);
|
|
||||||
//myexit(0);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
mylog(log_fatal,"epoll_wait return %d,%s\n", nfds,strerror(errno));
|
|
||||||
myexit(-1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
int idx;
|
|
||||||
for (idx = 0; idx < nfds; ++idx) {
|
|
||||||
if (events[idx].data.u64 == (u64_t)raw_recv_fd)
|
|
||||||
{
|
|
||||||
//iphdr *iph;tcphdr *tcph;
|
|
||||||
client_on_raw_recv(conn_info);
|
|
||||||
}
|
|
||||||
else if(events[idx].data.u64 ==(u64_t)timer_fd)
|
|
||||||
{
|
|
||||||
u64_t value;
|
|
||||||
int unused=read(timer_fd, &value, 8);
|
|
||||||
client_on_timer(conn_info);
|
|
||||||
mylog(log_trace,"epoll_trigger_counter: %d \n",epoll_trigger_counter);
|
|
||||||
epoll_trigger_counter=0;
|
|
||||||
}
|
|
||||||
else if (events[idx].data.u64 == (u64_t)udp_fd)
|
|
||||||
{
|
|
||||||
client_on_udp_recv(conn_info);
|
|
||||||
}
|
|
||||||
else if (events[idx].data.u64 == (u64_t)fifo_fd)
|
|
||||||
{
|
|
||||||
int len=read (fifo_fd, buf, sizeof (buf));
|
|
||||||
//assert(len>=0);
|
|
||||||
if(len<0)
|
|
||||||
{
|
|
||||||
mylog(log_warn,"fifo read failed len=%d,errno=%s\n",len,strerror(errno));
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
buf[len]=0;
|
|
||||||
while(len>=1&&buf[len-1]=='\n')
|
|
||||||
buf[len-1]=0;
|
|
||||||
mylog(log_info,"got data from fifo,len=%d,s=[%s]\n",len,buf);
|
|
||||||
if(strcmp(buf,"reconnect")==0)
|
|
||||||
{
|
|
||||||
mylog(log_info,"received command: reconnect\n");
|
|
||||||
conn_info.state.client_current_state=client_idle;
|
|
||||||
conn_info.my_id=get_true_random_number_nz();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
mylog(log_info,"unknown command\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
ev_run(loop, 0);
|
||||||
else
|
|
||||||
{
|
|
||||||
mylog(log_fatal,"unknown fd,this should never happen\n");
|
|
||||||
myexit(-1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
9
common.h
9
common.h
@ -44,21 +44,22 @@
|
|||||||
#ifndef NO_LIBNET
|
#ifndef NO_LIBNET
|
||||||
#include <libnet.h>
|
#include <libnet.h>
|
||||||
#endif
|
#endif
|
||||||
#include <my_ev.h>
|
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
//#include <linux/if_ether.h>
|
//#include <linux/if_ether.h>
|
||||||
#include <linux/filter.h>
|
#include <linux/filter.h>
|
||||||
#include <linux/if_packet.h>
|
#include <linux/if_packet.h>
|
||||||
#include <sys/epoll.h>
|
//#include <sys/epoll.h>
|
||||||
#include <sys/wait.h>
|
//#include <sys/wait.h> //signal
|
||||||
#include <netinet/if_ether.h>
|
#include <netinet/if_ether.h>
|
||||||
#include <net/if.h>
|
#include <net/if.h>
|
||||||
#include <sys/timerfd.h>
|
//#include <sys/timerfd.h>
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <my_ev.h>
|
||||||
|
|
||||||
#if defined(__MINGW32__)
|
#if defined(__MINGW32__)
|
||||||
#include <winsock2.h>
|
#include <winsock2.h>
|
||||||
typedef unsigned char u_int8_t;
|
typedef unsigned char u_int8_t;
|
||||||
|
85
main.cpp
85
main.cpp
@ -7,6 +7,23 @@
|
|||||||
#include "encrypt.h"
|
#include "encrypt.h"
|
||||||
#include "fd_manager.h"
|
#include "fd_manager.h"
|
||||||
|
|
||||||
|
void sigpipe_cb(struct ev_loop *l, ev_signal *w, int revents)
|
||||||
|
{
|
||||||
|
mylog(log_info, "got sigpipe, ignored");
|
||||||
|
}
|
||||||
|
|
||||||
|
void sigterm_cb(struct ev_loop *l, ev_signal *w, int revents)
|
||||||
|
{
|
||||||
|
mylog(log_info, "got sigterm, exit");
|
||||||
|
myexit(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
void sigint_cb(struct ev_loop *l, ev_signal *w, int revents)
|
||||||
|
{
|
||||||
|
mylog(log_info, "got sigint, exit");
|
||||||
|
myexit(0);
|
||||||
|
}
|
||||||
|
|
||||||
int client_event_loop();
|
int client_event_loop();
|
||||||
int server_event_loop();
|
int server_event_loop();
|
||||||
/*
|
/*
|
||||||
@ -25,22 +42,33 @@ int test()
|
|||||||
}*/
|
}*/
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
//printf("%llu\n",u64_t(-1));
|
|
||||||
//test();
|
assert(sizeof(unsigned short)==2);
|
||||||
//printf("%s\n",my_ntoa(0x00ffffff));
|
assert(sizeof(unsigned int)==4);
|
||||||
//auto a=string_to_vec("a b c d ");
|
assert(sizeof(unsigned long long)==8);
|
||||||
//printf("%d\n",(int)a.size());
|
|
||||||
//printf("%d %d %d %d",larger_than_u32(1,2),larger_than_u32(2,1),larger_than_u32(0xeeaaeebb,2),larger_than_u32(2,0xeeaaeebb));
|
|
||||||
//assert(0==1);
|
|
||||||
dup2(1, 2);//redirect stderr to stdout
|
dup2(1, 2);//redirect stderr to stdout
|
||||||
signal(SIGINT, signal_handler);
|
|
||||||
signal(SIGHUP, signal_handler);
|
struct ev_loop* loop=ev_default_loop(0);
|
||||||
signal(SIGKILL, signal_handler);
|
|
||||||
signal(SIGTERM, signal_handler);
|
#if !defined(__MINGW32__)
|
||||||
signal(SIGQUIT, signal_handler);
|
ev_signal signal_watcher_sigpipe;
|
||||||
|
ev_signal_init(&signal_watcher_sigpipe, sigpipe_cb, SIGPIPE);
|
||||||
|
ev_signal_start(loop, &signal_watcher_sigpipe);
|
||||||
|
#else
|
||||||
|
enable_log_color=0;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
ev_signal signal_watcher_sigterm;
|
||||||
|
ev_signal_init(&signal_watcher_sigterm, sigterm_cb, SIGTERM);
|
||||||
|
ev_signal_start(loop, &signal_watcher_sigterm);
|
||||||
|
|
||||||
|
ev_signal signal_watcher_sigint;
|
||||||
|
ev_signal_init(&signal_watcher_sigint, sigint_cb, SIGINT);
|
||||||
|
ev_signal_start(loop, &signal_watcher_sigint);
|
||||||
|
|
||||||
pre_process_arg(argc,argv);
|
pre_process_arg(argc,argv);
|
||||||
|
#if !defined(__MINGW32__)
|
||||||
if(geteuid() != 0)
|
if(geteuid() != 0)
|
||||||
{
|
{
|
||||||
mylog(log_warn,"root check failed, it seems like you are using a non-root account. we can try to continue, but it may fail. If you want to run udp2raw as non-root, you have to add iptables rule manually, and grant udp2raw CAP_NET_RAW capability, check README.md in repo for more info.\n");
|
mylog(log_warn,"root check failed, it seems like you are using a non-root account. we can try to continue, but it may fail. If you want to run udp2raw as non-root, you have to add iptables rule manually, and grant udp2raw CAP_NET_RAW capability, check README.md in repo for more info.\n");
|
||||||
@ -49,39 +77,10 @@ int main(int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
mylog(log_warn,"you can run udp2raw with non-root account for better security. check README.md in repo for more info.\n");
|
mylog(log_warn,"you can run udp2raw with non-root account for better security. check README.md in repo for more info.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
//local_ip_uint32=inet_addr(local_ip);
|
|
||||||
//source_ip_uint32=inet_addr(source_ip);
|
|
||||||
|
|
||||||
|
|
||||||
#if ENABLE_DNS_RESOLVE
|
|
||||||
|
|
||||||
//if(enable_dns_resolve)
|
|
||||||
//{
|
|
||||||
|
|
||||||
struct hostent *he;
|
|
||||||
if ( (he = gethostbyname(remote_address) ) == NULL ) {
|
|
||||||
mylog(log_error,"Unable to resolve hostname: %s, error:%s \n",remote_address,hstrerror(h_errno) );
|
|
||||||
myexit(1); /* error */
|
|
||||||
}
|
|
||||||
struct in_addr **addr_list = (struct in_addr **)he->h_addr_list;
|
|
||||||
assert( he->h_addrtype ==AF_INET);
|
|
||||||
assert(addr_list!=NULL);
|
|
||||||
|
|
||||||
remote_ip_uint32=(*addr_list[0]).s_addr;
|
|
||||||
mylog(log_info,"remote_address[%s] has been resolved to [%s]\n",remote_address, my_ntoa(remote_ip_uint32));
|
|
||||||
|
|
||||||
|
|
||||||
strcpy(remote_ip,my_ntoa(remote_ip_uint32));
|
|
||||||
|
|
||||||
//}
|
|
||||||
//else
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
mylog(log_info,"remote_ip=[%s], make sure this is a vaild IP address\n",remote_addr.get_ip());
|
|
||||||
|
|
||||||
//current_time_rough=get_current_time();
|
mylog(log_info,"remote_ip=[%s], make sure this is a vaild IP address\n",remote_addr.get_ip());
|
||||||
|
|
||||||
init_random_number_fd();
|
init_random_number_fd();
|
||||||
srand(get_true_random_number_nz());
|
srand(get_true_random_number_nz());
|
||||||
|
3
misc.cpp
3
misc.cpp
@ -1091,7 +1091,7 @@ int unit_test()
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
int set_timer(int epollfd,int &timer_fd)//put a timer_fd into epoll,general function,used both in client and server
|
int set_timer(int epollfd,int &timer_fd)//put a timer_fd into epoll,general function,used both in client and server
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
@ -1154,6 +1154,7 @@ int set_timer_server(int epollfd,int &timer_fd,fd64_t &fd64)//only for server
|
|||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
int handle_lower_level(raw_info_t &raw_info)//fill lower_level info,when --lower-level is enabled,only for server
|
int handle_lower_level(raw_info_t &raw_info)//fill lower_level info,when --lower-level is enabled,only for server
|
||||||
{
|
{
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
#include "encrypt.h"
|
#include "encrypt.h"
|
||||||
#include "fd_manager.h"
|
#include "fd_manager.h"
|
||||||
|
|
||||||
|
#if 0
|
||||||
int server_easytcp=0;//currently only for test
|
int server_easytcp=0;//currently only for test
|
||||||
|
|
||||||
int server_on_timer_multi(conn_info_t &conn_info) //for server. called when a timer is ready in epoll.for server,there will be one timer for every connection
|
int server_on_timer_multi(conn_info_t &conn_info) //for server. called when a timer is ready in epoll.for server,there will be one timer for every connection
|
||||||
@ -899,3 +900,8 @@ int server_event_loop()
|
|||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
int server_event_loop()
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user