]> granicus.if.org Git - transmission/commitdiff
refactor out some dead code in net.c, and probably give jhujhiti fits
authorCharles Kerr <charles@transmissionbt.com>
Fri, 30 May 2008 15:43:10 +0000 (15:43 +0000)
committerCharles Kerr <charles@transmissionbt.com>
Fri, 30 May 2008 15:43:10 +0000 (15:43 +0000)
libtransmission/net.c

index 5b9d5205cba6c7414e000ddfffe3fb96f0839b31..2b5ea0e496884428fc8c26ce313460d6d15e9279 100644 (file)
@@ -118,12 +118,12 @@ createSocket( int type, int priority )
     return makeSocketNonBlocking( tr_fdSocketCreate( type, priority ) );
 }
 
-static int
-tr_netOpen( const struct in_addr * addr, tr_port_t port,
-            int type, int priority )
+int
+tr_netOpenTCP( const struct in_addr * addr, tr_port_t port, int priority )
 {
     int s;
     struct sockaddr_in sock;
+    const int type = SOCK_STREAM;
 
     if( ( s = createSocket( type, priority ) ) < 0 )
     {
@@ -151,18 +151,13 @@ tr_netOpen( const struct in_addr * addr, tr_port_t port,
 
     return s;
 }
-  
-int
-tr_netOpenTCP( const struct in_addr * addr, tr_port_t port, int priority )
-{
-    return tr_netOpen( addr, port, SOCK_STREAM, priority );
-}
 
-static int
-tr_netBind( int port, int type )
+int
+tr_netBindTCP( int port )
 {
     int s;
     struct sockaddr_in sock;
+    const int type = SOCK_STREAM;
 #if defined( SO_REUSEADDR ) || defined( SO_REUSEPORT )
     int optval;
 #endif
@@ -192,12 +187,6 @@ tr_netBind( int port, int type )
     return s;
 }
 
-int
-tr_netBindTCP( int port )
-{
-    return tr_netBind( port, SOCK_STREAM );
-}
-
 int
 tr_netAccept( int b, struct in_addr * addr, tr_port_t * port )
 {