X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=net.c;h=9c03ca082e63a9405b8f158c506c8ee9cfaa0c10;hp=076600fc45f2952212835339ac4e991ee0e5edc6;hb=24e2b57dde50a6fe33deee034d34181eece09834;hpb=7a0852896a75d852dbd2ac848ec5c0be3b5dea71 diff --git a/net.c b/net.c index 076600fc..9c03ca08 100644 --- 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, - const char *host, unsigned short port_number) + const char *host, unsigned short port_number) { 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 - && 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); @@ -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", - layer4_name(l4type), port, fd); + layer4_name(l4type), port, 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), - NI_NUMERICHOST | NI_NUMERICSERV); + NI_NUMERICHOST | NI_NUMERICSERV); if (ret) { PARA_WARNING_LOG("hostname lookup error (%s).\n", gai_strerror(ret)); sprintf(output, "(unknown)");