diff --git a/src/netevent.h b/src/netevent.h index f238487..4395645 100644 --- a/src/netevent.h +++ b/src/netevent.h @@ -20,33 +20,10 @@ #ifndef HAVE_UHUB_NET_EVENT_H #define HAVE_UHUB_NET_EVENT_H -/** - * Network callback for reading data from a socket. - */ -extern void net_on_read(int fd, short ev, void *arg); - -/** - * Network callback for writing data to a socket. - */ -extern void net_on_write(int fd, short ev, void *arg); - -/** - * Network callback for timers. - */ -extern void net_on_read_timeout(int fd, short ev, void* arg); - /** * Network callback to accept incoming connections. */ extern void net_on_accept(int fd, short ev, void *arg); -#ifdef ADC_UDP_OPERATION -/** - * Network callback to receive incoming UDP datagram. - */ -extern void net_on_packet(int fd, short ev, void *arg); -#endif - - #endif /* HAVE_UHUB_NET_EVENT_H */