telnetproxy/connection.h

9 lines
204 B
C
Raw Permalink Normal View History

2006-11-25 14:31:52 +01:00
#ifndef _CONNECTION_H_
#define _CONNECTION_H_
2006-12-03 20:03:16 +01:00
int listen_handler(int fd, void *privdata);
2007-04-17 18:31:59 +02:00
int client_handler(int fd, void *privdata);
int admin_handler(int fd, void *privdata);
2006-11-25 14:31:52 +01:00
#endif // _CONNECTION_H_