]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - net.c
Trivial whitespace cleanups.
[paraslash.git] / net.c
diff --git a/net.c b/net.c
index 076600fc45f2952212835339ac4e991ee0e5edc6..9c03ca082e63a9405b8f158c506c8ee9cfaa0c10 100644 (file)
--- a/net.c
+++ b/net.c
@@ -138,7 +138,7 @@ static const char *layer4_name(const unsigned l4type)
  *  \sa ipv6(7), getaddrinfo(3), bind(2), connect(2)
  */
 int makesock(unsigned l3type, unsigned l4type, int passive,
  *  \sa ipv6(7), getaddrinfo(3), bind(2), connect(2)
  */
 int makesock(unsigned l3type, unsigned l4type, int passive,
-            const char *host, unsigned short port_number)
+               const char *host, unsigned short port_number)
 {
        struct addrinfo *local = NULL, *src,
                        *remote = NULL, *dst, hints;
 {
        struct addrinfo *local = NULL, *src,
                        *remote = NULL, *dst, hints;
@@ -180,7 +180,7 @@ int makesock(unsigned l3type, unsigned l4type, int passive,
         */
        for (src = local, dst = remote; src != NULL || dst != NULL; /* no op */ ) {
                if (src && dst && src->ai_family == AF_INET
         */
        for (src = local, dst = remote; src != NULL || dst != NULL; /* no op */ ) {
                if (src && dst && src->ai_family == AF_INET
-                              && dst->ai_family == AF_INET6)   /* v4 -> v6 is not possible */
+                               && dst->ai_family == AF_INET6)  /* v4 -> v6 is not possible */
                        goto get_next_dst;
 
                sockfd = socket(src ? src->ai_family : dst->ai_family, socktype, l4type);
                        goto get_next_dst;
 
                sockfd = socket(src ? src->ai_family : dst->ai_family, socktype, l4type);
@@ -248,7 +248,7 @@ int para_listen(unsigned l3type, unsigned l4type, unsigned short port)
                        return -ERRNO_TO_PARA_ERROR(errno);
                }
                PARA_INFO_LOG("listening on %s port %u, fd %d\n",
                        return -ERRNO_TO_PARA_ERROR(errno);
                }
                PARA_INFO_LOG("listening on %s port %u, fd %d\n",
-                             layer4_name(l4type), port, fd);
+                       layer4_name(l4type), port, fd);
        }
        return fd;
 }
        }
        return fd;
 }
@@ -268,7 +268,7 @@ char *host_and_port(struct sockaddr *sa, socklen_t len)
        int             ret;
 
        ret = getnameinfo(sa, len, hbuf, sizeof(hbuf), sbuf, sizeof(sbuf),
        int             ret;
 
        ret = getnameinfo(sa, len, hbuf, sizeof(hbuf), sbuf, sizeof(sbuf),
-                         NI_NUMERICHOST | NI_NUMERICSERV);
+               NI_NUMERICHOST | NI_NUMERICSERV);
        if (ret)        {
                PARA_WARNING_LOG("hostname lookup error (%s).\n", gai_strerror(ret));
                sprintf(output, "(unknown)");
        if (ret)        {
                PARA_WARNING_LOG("hostname lookup error (%s).\n", gai_strerror(ret));
                sprintf(output, "(unknown)");