Searched refs:req_opts (Results 1 – 3 of 3) sorted by relevance
/systemd-251/src/libsystemd-network/ |
D | sd-dhcp6-client.c | 382 if (typesafe_bsearch(&opt, client->req_opts, client->n_req_opts, be16_compare_func)) in sd_dhcp6_client_set_request_option() 385 if (!GREEDY_REALLOC(client->req_opts, client->n_req_opts + 1)) in sd_dhcp6_client_set_request_option() 388 client->req_opts[client->n_req_opts++] = opt; in sd_dhcp6_client_set_request_option() 391 typesafe_qsort(client->req_opts, client->n_req_opts, be16_compare_func); in sd_dhcp6_client_set_request_option() 640 be16_t *req_opts; in client_append_oro() local 654 memcpy_safe(buf, client->req_opts, n * sizeof(be16_t)); in client_append_oro() 659 req_opts = buf; in client_append_oro() 668 memcpy_safe(buf, client->req_opts, n * sizeof(be16_t)); in client_append_oro() 672 req_opts = buf; in client_append_oro() 677 req_opts = client->req_opts; in client_append_oro() [all …]
|
D | dhcp6-internal.h | 66 be16_t *req_opts; member
|
D | sd-dhcp-client.c | 86 Set *req_opts; member 263 return set_ensure_put(&client->req_opts, NULL, UINT8_TO_PTR(option)); in sd_dhcp_client_set_request_option() 892 if (!set_isempty(client->req_opts) && type != DHCP_RELEASE) { in client_message_init() 897 n_opts = set_size(client->req_opts); in client_message_init() 902 SET_FOREACH(val, client->req_opts) in client_message_init() 2227 set_free(client->req_opts); in dhcp_client_free()
|