1 #ifndef __PROXY_TCP_H_
2 #define __PROXY_TCP_H_
3 
4 struct tcp_proxy {
5 
6 	int socket_id;
7 
8 	int client_id;
9 	int server_id;
10 
11 };
12 
13 #endif
14