Searched refs:vendor_options (Results 1 – 7 of 7) sorted by relevance
/systemd-251/src/libsystemd-network/ |
D | dhcp6-internal.h | 73 OrderedSet *vendor_options; member
|
D | dhcp-server-internal.h | 73 OrderedSet *vendor_options; member
|
D | sd-dhcp-client.c | 110 OrderedHashmap *vendor_options; member 665 r = ordered_hashmap_ensure_allocated(&client->vendor_options, &dhcp_option_hash_ops); in sd_dhcp_client_add_vendor_option() 669 r = ordered_hashmap_put(client->vendor_options, v, v); in sd_dhcp_client_add_vendor_option() 1049 if (!ordered_hashmap_isempty(client->vendor_options)) { in client_append_common_discover_request_options() 1053 … ordered_hashmap_size(client->vendor_options), client->vendor_options); in client_append_common_discover_request_options() 2233 ordered_hashmap_free(client->vendor_options); in dhcp_client_free()
|
D | sd-dhcp6-client.c | 165 ordered_set_clear(client->vendor_options); in sd_dhcp6_client_add_vendor_option() 169 r = ordered_set_ensure_put(&client->vendor_options, &dhcp6_option_hash_ops, v); in sd_dhcp6_client_add_vendor_option() 610 if (!ordered_set_isempty(client->vendor_options)) { in client_append_common_options_in_managed_mode() 611 r = dhcp6_option_append_vendor_option(opt, optlen, client->vendor_options); in client_append_common_options_in_managed_mode() 1447 ordered_set_free(client->vendor_options); in dhcp6_client_free()
|
D | dhcp6-option.h | 81 int dhcp6_option_append_vendor_option(uint8_t **buf, size_t *buflen, OrderedSet *vendor_options);
|
D | dhcp6-option.c | 247 int dhcp6_option_append_vendor_option(uint8_t **buf, size_t *buflen, OrderedSet *vendor_options) { in dhcp6_option_append_vendor_option() argument 254 assert(vendor_options); in dhcp6_option_append_vendor_option() 256 ORDERED_SET_FOREACH(options, vendor_options) { in dhcp6_option_append_vendor_option()
|
D | sd-dhcp-server.c | 180 ordered_set_free(server->vendor_options); in dhcp_server_free() 663 if (!ordered_set_isempty(server->vendor_options)) { in server_send_offer_or_ack() 667 ordered_set_size(server->vendor_options), server->vendor_options); in server_send_offer_or_ack() 1569 r = ordered_set_ensure_put(&server->vendor_options, &dhcp_option_hash_ops, v); in sd_dhcp_server_add_vendor_option()
|