X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fsocket.c;h=1cd98e29920cf14769d083b2332091d5038dc73a;hp=ecaf3d21488722e913ff9f70e26effdb6aac18a7;hb=75c8e3cffd7da8eede614cf61384957af2c82a29;hpb=54ecda32c60c6f2548f74703bfd324694393edaa diff --git a/src/socket.c b/src/socket.c index ecaf3d214..1cd98e299 100644 --- a/src/socket.c +++ b/src/socket.c @@ -564,7 +564,8 @@ static int instance_from_socket(int fd, unsigned nr, char **instance) { b = ntohl(remote.in.sin_addr.s_addr); if (asprintf(&r, - "%u.%u.%u.%u:%u-%u.%u.%u.%u:%u", + "%u-%u.%u.%u.%u:%u-%u.%u.%u.%u:%u", + nr, a >> 24, (a >> 16) & 0xFF, (a >> 8) & 0xFF, a & 0xFF, ntohs(local.in.sin_port), b >> 24, (b >> 16) & 0xFF, (b >> 8) & 0xFF, b & 0xFF, @@ -586,7 +587,8 @@ static int instance_from_socket(int fd, unsigned nr, char **instance) { *b = remote.in6.sin6_addr.s6_addr+12; if (asprintf(&r, - "%u.%u.%u.%u:%u-%u.%u.%u.%u:%u", + "%u-%u.%u.%u.%u:%u-%u.%u.%u.%u:%u", + nr, a[0], a[1], a[2], a[3], ntohs(local.in6.sin6_port), b[0], b[1], b[2], b[3], @@ -596,7 +598,8 @@ static int instance_from_socket(int fd, unsigned nr, char **instance) { char a[INET6_ADDRSTRLEN], b[INET6_ADDRSTRLEN]; if (asprintf(&r, - "%s:%u-%s:%u", + "%u-%s:%u-%s:%u", + nr, inet_ntop(AF_INET6, &local.in6.sin6_addr, a, sizeof(a)), ntohs(local.in6.sin6_port), inet_ntop(AF_INET6, &remote.in6.sin6_addr, b, sizeof(b)), @@ -1491,7 +1494,6 @@ static void socket_enter_running(Socket *s, int cfd) { fail: log_warning("%s failed to queue socket startup job: %s", UNIT(s)->id, bus_error(&error, r)); - socket_enter_stop_pre(s, SOCKET_FAILURE_RESOURCES); if (cfd >= 0) close_nointr_nofail(cfd);