Loading src/or/connection.c +4 −3 Original line number Diff line number Diff line Loading @@ -475,7 +475,8 @@ connection_create_listener(const char *bindaddress, uint16_t bindport, int type) bindaddr.sin_family = AF_INET; bindaddr.sin_port = htons((uint16_t) usePort); log_fn(LOG_NOTICE, "Opening listener on %s:%d", address, usePort); log_fn(LOG_NOTICE, "Opening %s on %s:%d", conn_type_to_string(type), address, usePort); s = socket(PF_INET,SOCK_STREAM,IPPROTO_TCP); if (s < 0) { Loading Loading
src/or/connection.c +4 −3 Original line number Diff line number Diff line Loading @@ -475,7 +475,8 @@ connection_create_listener(const char *bindaddress, uint16_t bindport, int type) bindaddr.sin_family = AF_INET; bindaddr.sin_port = htons((uint16_t) usePort); log_fn(LOG_NOTICE, "Opening listener on %s:%d", address, usePort); log_fn(LOG_NOTICE, "Opening %s on %s:%d", conn_type_to_string(type), address, usePort); s = socket(PF_INET,SOCK_STREAM,IPPROTO_TCP); if (s < 0) { Loading