diff options
author | Patrik Flykt <patrik.flykt@linux.intel.com> | 2014-01-31 11:31:21 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-01-31 12:04:51 +0100 |
commit | e44127018aaae2126734aca65a3e46dc14bf1825 (patch) | |
tree | a2778bc940b8fec1c63729a1efce19b5bb609855 /src/libsystemd-dhcp | |
parent | 74e22380ed1d753130e9194186aefdf58449050e (diff) |
libsystemd-dhcp: Rename function to be clearer that options are parsed
Diffstat (limited to 'src/libsystemd-dhcp')
-rw-r--r-- | src/libsystemd-dhcp/sd-dhcp-client.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libsystemd-dhcp/sd-dhcp-client.c b/src/libsystemd-dhcp/sd-dhcp-client.c index 8115b7f769..130a61d6f8 100644 --- a/src/libsystemd-dhcp/sd-dhcp-client.c +++ b/src/libsystemd-dhcp/sd-dhcp-client.c @@ -726,7 +726,7 @@ static int client_timeout_t1(sd_event_source *s, uint64_t usec, void *userdata) return client_initialize_events(client, usec); } -static int client_parse_offer(uint8_t code, uint8_t len, const uint8_t *option, +static int client_parse_options(uint8_t code, uint8_t len, const uint8_t *option, void *user_data) { DHCPLease *lease = user_data; be32_t val; @@ -876,7 +876,7 @@ static int client_receive_offer(sd_dhcp_client *client, DHCPPacket *offer, return -ENOMEM; len = len - DHCP_IP_UDP_SIZE; - r = dhcp_option_parse(&offer->dhcp, len, client_parse_offer, + r = dhcp_option_parse(&offer->dhcp, len, client_parse_options, lease); if (r != DHCP_OFFER) return -ENOMSG; @@ -919,7 +919,7 @@ static int client_receive_ack(sd_dhcp_client *client, const uint8_t *buf, if (!lease) return -ENOMEM; - r = dhcp_option_parse(dhcp, len, client_parse_offer, lease); + r = dhcp_option_parse(dhcp, len, client_parse_options, lease); if (r == DHCP_NAK) return DHCP_EVENT_NO_LEASE; |