00001 #if !defined(_UTIL_H_) 00002 #define _UTIL_H_ 00003 00004 #define EPS_FILENAME "eps.file" 00005 00006 int read_msg(apr_socket_t *sock, char **buf); 00007 void split_ipaddr_string(char *str, char **ip_addr, int *port, int default_port); 00008 char **read_eps_from_file(char *eps_filename); 00009 void dump_connection(apr_socket_t *sock); 00010 00011 #endif /* _UTIL_H_ */ 00012