1 #ifndef PACHI_NETWORK_H
2 #define PACHI_NETWORK_H
4 #include <netinet/in.h>
6 int port_listen(char *port
, int max_connections
);
7 int open_server_connection(int socket
, struct in_addr
*client
);
8 void open_log_port(char *port
);
9 void open_gtp_connection(int *socket
, char *port
);