bzero is not used (deprecated) as it's a BSDism.
authorJeremy Allison <jra@samba.org>
Sun, 26 Aug 2001 19:11:33 +0000 (19:11 +0000)
committerJeremy Allison <jra@samba.org>
Sun, 26 Aug 2001 19:11:33 +0000 (19:11 +0000)
Syscalls must check for -1, not < 0 (POSIX).
Formating (tab) fixups.
Jeremy.
(This used to be commit 7263949584a5e01fd5316770861a7550bd3f1155)

source3/lib/util_sock.c

index 363e7751869878553c368c017cdb0f28c309165f..144f7cbd6866b1a76ef551e6d21855510cb21174 100644 (file)
@@ -775,80 +775,70 @@ BOOL send_one_packet(char *buf,int len,struct in_addr ip,int port,int type)
 }
 
 /****************************************************************************
-open a socket of the specified type, port, and address for incoming data
+ Open a socket of the specified type, port, and address for incoming data.
 ****************************************************************************/
 
-int open_socket_in( int type, int port, int dlevel,
-                    uint32 socket_addr, BOOL rebind )
-  {
-  struct sockaddr_in sock;
-  int res;
+int open_socket_in( int type, int port, int dlevel, uint32 socket_addr, BOOL rebind )
+{
+       struct sockaddr_in sock;
+       int res;
 
-  /* Clear the sockaddr_in structure (why not bzero()?). */
-  memset( (char *)&sock, '\0', sizeof(sock) );
+       memset( (char *)&sock, '\0', sizeof(sock) );
 
 #ifdef HAVE_SOCK_SIN_LEN
-  sock.sin_len         = sizeof(sock);
+       sock.sin_len         = sizeof(sock);
 #endif
-  sock.sin_port        = htons( port );
-  sock.sin_family      = AF_INET;
-  sock.sin_addr.s_addr = socket_addr;
-
-  res = socket( AF_INET, type, 0 );
-  if( res < 0 )
-    {
-    if( DEBUGLVL(0) )
-      {
-      dbgtext( "open_socket_in(): socket() call failed: " );
-      dbgtext( "%s\n", strerror( errno ) );
-      }
-    return -1;
-    }
+       sock.sin_port        = htons( port );
+       sock.sin_family      = AF_INET;
+       sock.sin_addr.s_addr = socket_addr;
+
+       res = socket( AF_INET, type, 0 );
+       if( res == -1 ) {
+               if( DEBUGLVL(0) ) {
+                       dbgtext( "open_socket_in(): socket() call failed: " );
+                       dbgtext( "%s\n", strerror( errno ) );
+               }
+               return -1;
+       }
 
-  /* This block sets/clears the SO_REUSEADDR and possibly SO_REUSEPORT. */
-  {
-  int val = rebind ? 1 : 0;
-  if( setsockopt(res,SOL_SOCKET,SO_REUSEADDR,(char *)&val,sizeof(val)) == -1 )
-    {
-    if( DEBUGLVL( dlevel ) )
-      {
-      dbgtext( "open_socket_in(): setsockopt: " );
-      dbgtext( "SO_REUSEADDR = %d ", val?"True":"False" );
-      dbgtext( "on port %d failed ", port );
-      dbgtext( "with error = %s\n", strerror(errno) );
-      }
-    }
+       /* This block sets/clears the SO_REUSEADDR and possibly SO_REUSEPORT. */
+       {
+               int val = rebind ? 1 : 0;
+               if( setsockopt(res,SOL_SOCKET,SO_REUSEADDR,(char *)&val,sizeof(val)) == -1 ) {
+                       if( DEBUGLVL( dlevel ) ) {
+                               dbgtext( "open_socket_in(): setsockopt: " );
+                               dbgtext( "SO_REUSEADDR = %d ", val?"True":"False" );
+                               dbgtext( "on port %d failed ", port );
+                               dbgtext( "with error = %s\n", strerror(errno) );
+                       }
+               }
 #ifdef SO_REUSEPORT
-  if( setsockopt(res,SOL_SOCKET,SO_REUSEPORT,(char *)&val,sizeof(val)) == -1 )
-    {
-    if( DEBUGLVL( dlevel ) )
-      {
-      dbgtext( "open_socket_in(): setsockopt: "
-      dbgtext( "SO_REUSEPORT = %d ", val?"True":"False" );
-      dbgtext( "on port %d failed ", port );
-      dbgtext( "with error = %s\n", strerror(errno) );
-      }
-    }
+               if( setsockopt(res,SOL_SOCKET,SO_REUSEPORT,(char *)&val,sizeof(val)) == -1 ) {
+                       if( DEBUGLVL( dlevel ) ) {
+                               dbgtext( "open_socket_in(): setsockopt: "
+                               dbgtext( "SO_REUSEPORT = %d ", val?"True":"False" );
+                               dbgtext( "on port %d failed ", port );
+                               dbgtext( "with error = %s\n", strerror(errno) );
+                       }
+               }
 #endif /* SO_REUSEPORT */
-  }
+       }
 
-  /* now we've got a socket - we need to bind it */
-  if( bind( res, (struct sockaddr *)&sock, sizeof(sock) ) < 0 ) 
-    {
-    if( DEBUGLVL(dlevel) && (port == SMB_PORT || port == NMB_PORT) )
-      {
-      dbgtext( "bind failed on port %d ", port );
-      dbgtext( "socket_addr = %s.\n", inet_ntoa( sock.sin_addr ) );
-      dbgtext( "Error = %s\n", strerror(errno) );
-      }
-    close( res ); 
-    return( -1 ); 
-    }
+       /* now we've got a socket - we need to bind it */
+       if( bind( res, (struct sockaddr *)&sock, sizeof(sock) ) == -1 ) {
+               if( DEBUGLVL(dlevel) && (port == SMB_PORT || port == NMB_PORT) ) {
+                       dbgtext( "bind failed on port %d ", port );
+                       dbgtext( "socket_addr = %s.\n", inet_ntoa( sock.sin_addr ) );
+                       dbgtext( "Error = %s\n", strerror(errno) );
+               }
+               close( res ); 
+               return( -1 ); 
+       }
 
-  DEBUG( 3, ( "bind succeeded on port %d\n", port ) );
+       DEBUG( 3, ( "bind succeeded on port %d\n", port ) );
 
-  return( res );
 }
+       return( res );
+ }
 
 /****************************************************************************
   create an outgoing socket. timeout is in milliseconds.