From: Tom Gundersen Date: Sun, 29 Jun 2014 14:42:43 +0000 (+0200) Subject: sd-dhcp-client: don't fail hard if UDP socket can not be bound X-Git-Tag: v215~124 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=fb41e6d7c68c83558f8482f7fc72794a67b0638f sd-dhcp-client: don't fail hard if UDP socket can not be bound Even if we cannot renew the lease at T1, we will likely succeed at T2, so warn and ignore the failure. This could happen if for whatever reason the received address is not yet configured, or it has been lost. --- diff --git a/src/libsystemd-network/sd-dhcp-client.c b/src/libsystemd-network/sd-dhcp-client.c index 790728b40..8e9f5bd82 100644 --- a/src/libsystemd-network/sd-dhcp-client.c +++ b/src/libsystemd-network/sd-dhcp-client.c @@ -776,7 +776,7 @@ static int client_timeout_t1(sd_event_source *s, uint64_t usec, r = dhcp_network_bind_udp_socket(client->lease->address, DHCP_PORT_CLIENT); if (r < 0) { - client_stop(client, r); + log_dhcp_client(client, "could not bind UDP socket"); return 0; }