Home
last modified time | relevance | path

Searched refs:DHCP6IA (Results 1 – 7 of 7) sorted by relevance

/systemd-251/src/libsystemd-network/
Ddhcp6-option.h62 typedef struct DHCP6IA { struct
67 } DHCP6IA; typedef
69 void dhcp6_ia_clear_addresses(DHCP6IA *ia);
70 DHCP6IA *dhcp6_ia_free(DHCP6IA *ia);
71 DEFINE_TRIVIAL_CLEANUP_FUNC(DHCP6IA*, dhcp6_ia_free);
77 int dhcp6_option_append_ia(uint8_t **buf, size_t *buflen, const DHCP6IA *ia);
97 DHCP6IA **ret);
Ddhcp6-option.c331 int dhcp6_option_append_ia(uint8_t **buf, size_t *buflen, const DHCP6IA *ia) { in dhcp6_option_append_ia()
588 static int dhcp6_option_parse_ia_address(sd_dhcp6_client *client, DHCP6IA *ia, const uint8_t *data,… in dhcp6_option_parse_ia_address()
631 static int dhcp6_option_parse_ia_pdprefix(sd_dhcp6_client *client, DHCP6IA *ia, const uint8_t *data… in dhcp6_option_parse_ia_pdprefix()
680 DHCP6IA **ret) { in dhcp6_option_parse_ia()
682 _cleanup_(dhcp6_ia_freep) DHCP6IA *ia = NULL; in dhcp6_option_parse_ia()
716 ia = new(DHCP6IA, 1); in dhcp6_option_parse_ia()
720 *ia = (DHCP6IA) { in dhcp6_option_parse_ia()
Ddhcp6-internal.h61 DHCP6IA ia_na;
62 DHCP6IA ia_pd;
Ddhcp6-lease-internal.h31 DHCP6IA *ia_na; /* Identity association non-temporary addresses */
32 DHCP6IA *ia_pd; /* Identity association prefix delegation */
Dsd-dhcp6-lease.c108 void dhcp6_ia_clear_addresses(DHCP6IA *ia) { in dhcp6_ia_clear_addresses()
117 DHCP6IA *dhcp6_ia_free(DHCP6IA *ia) { in dhcp6_ia_free()
521 _cleanup_(dhcp6_ia_freep) DHCP6IA *ia = NULL; in dhcp6_lease_parse_message()
544 _cleanup_(dhcp6_ia_freep) DHCP6IA *ia = NULL; in dhcp6_lease_parse_message()
Dsd-dhcp6-client.c566 const DHCP6IA *ia_na, in client_append_common_options_in_managed_mode()
567 const DHCP6IA *ia_pd) { in client_append_common_options_in_managed_mode()
Dtest-dhcp6-client.c322 _cleanup_(dhcp6_ia_freep) DHCP6IA *ia = NULL; in TEST()