diff --git a/libtransmission/net.c b/libtransmission/net.c index 39068f6ff..5b9d5205c 100644 --- a/libtransmission/net.c +++ b/libtransmission/net.c @@ -76,7 +76,7 @@ int tr_netResolve( const char * address, struct in_addr * addr ) /*********************************************************************** - * TCP/UDP sockets + * TCP sockets **********************************************************************/ int diff --git a/libtransmission/net.h b/libtransmission/net.h index b26bcdd09..a00342d1a 100644 --- a/libtransmission/net.h +++ b/libtransmission/net.h @@ -66,12 +66,10 @@ int tr_netResolve( const char *, struct in_addr * ); /*********************************************************************** - * TCP and UDP sockets + * Sockets **********************************************************************/ int tr_netOpenTCP ( const struct in_addr * addr, tr_port_t port, int priority ); -int tr_netOpenUDP ( const struct in_addr * addr, tr_port_t port, int priority ); int tr_netBindTCP ( int port ); -int tr_netBindUDP ( int port ); int tr_netAccept ( int s, struct in_addr *, tr_port_t * ); int tr_netSetTOS ( int s, int tos ); void tr_netClose ( int s );