more fixes from the static changes; please move static functions to the top of files...
authorGerald Carter <jerry@samba.org>
Tue, 10 Feb 2004 04:02:53 +0000 (04:02 +0000)
committerGerald Carter <jerry@samba.org>
Tue, 10 Feb 2004 04:02:53 +0000 (04:02 +0000)
source/lib/util_sock.c

index 594bc121b1755eae7db77a25a00d64855ef62ca7..782f5f3f7310aa41dbac2badfacf159bbe55c771 100644 (file)
@@ -29,6 +29,29 @@ int lastport=0;
 
 int smb_read_error = 0;
 
+static char *get_socket_addr(int fd)
+{
+       struct sockaddr sa;
+       struct sockaddr_in *sockin = (struct sockaddr_in *) (&sa);
+       int     length = sizeof(sa);
+       static fstring addr_buf;
+
+       fstrcpy(addr_buf,"0.0.0.0");
+
+       if (fd == -1) {
+               return addr_buf;
+       }
+       
+       if (getsockname(fd, &sa, &length) < 0) {
+               DEBUG(0,("getpeername failed. Error was %s\n", strerror(errno) ));
+               return addr_buf;
+       }
+       
+       fstrcpy(addr_buf,(char *)inet_ntoa(sockin->sin_addr));
+       
+       return addr_buf;
+}
+
 /****************************************************************************
  Determine if a file descriptor is in fact a socket.
 ****************************************************************************/
@@ -958,29 +981,6 @@ char *get_peer_addr(int fd)
        return addr_buf;
 }
 
-static char *get_socket_addr(int fd)
-{
-       struct sockaddr sa;
-       struct sockaddr_in *sockin = (struct sockaddr_in *) (&sa);
-       int     length = sizeof(sa);
-       static fstring addr_buf;
-
-       fstrcpy(addr_buf,"0.0.0.0");
-
-       if (fd == -1) {
-               return addr_buf;
-       }
-       
-       if (getsockname(fd, &sa, &length) < 0) {
-               DEBUG(0,("getpeername failed. Error was %s\n", strerror(errno) ));
-               return addr_buf;
-       }
-       
-       fstrcpy(addr_buf,(char *)inet_ntoa(sockin->sin_addr));
-       
-       return addr_buf;
-}
-
 /*******************************************************************
  Create protected unix domain socket.