16 #ifndef included_vnet_dhcp6_client_dp_h 17 #define included_vnet_dhcp6_client_dp_h 102 #include <dhcp/dhcp.api_types.h> 104 typedef struct _vnet_dhcp6_reply_function_list_elt
106 struct _vnet_dhcp6_reply_function_list_elt *next_dhcp6_reply_event_function;
108 } _vnet_dhcp6_reply_event_function_list_elt_t;
117 #define VNET_DHCP6_REPLY_EVENT_FUNCTION(f) \ 119 static void __vnet_dhcp6_reply_event_function_init_##f (void) \ 120 __attribute__((__constructor__)) ; \ 122 static void __vnet_dhcp6_reply_event_function_init_##f (void) \ 124 dhcp6_ia_na_client_public_main_t * nm = &dhcp6_ia_na_client_public_main; \ 125 static _vnet_dhcp6_reply_event_function_list_elt_t init_function; \ 126 init_function.next_dhcp6_reply_event_function = nm->functions; \ 127 nm->functions = &init_function; \ 128 init_function.fp = (void *) &f; \ 131 static void __vnet_dhcp6_reply_event_function_deinit_##f (void) \ 132 __attribute__((__destructor__)) ; \ 134 static void __vnet_dhcp6_reply_event_function_deinit_##f (void) \ 136 dhcp6_ia_na_client_public_main_t * nm = &dhcp6_ia_na_client_public_main; \ 137 _vnet_dhcp6_reply_event_function_list_elt_t *next; \ 138 if (nm->functions->fp == (void *) &f) \ 141 nm->functions->next_dhcp6_reply_event_function; \ 144 next = nm->functions; \ 145 while (next->next_dhcp6_reply_event_function) \ 147 if (next->next_dhcp6_reply_event_function->fp == (void *) &f) \ 149 next->next_dhcp6_reply_event_function = \ 150 next->next_dhcp6_reply_event_function->next_dhcp6_reply_event_function; \ 153 next = next->next_dhcp6_reply_event_function; \ vlib_node_registration_t dhcp6_reply_process_node
(constructor) VLIB_REGISTER_NODE (dhcp6_reply_process_node)
void dhcp6_send_client_message(vlib_main_t *vm, u32 sw_if_index, u8 stop, dhcp6_send_client_message_params_t *params)
_vnet_dhcp6_reply_event_function_list_elt_t * functions
u8 keep_sending_client_message
int dhcp6_publish_report(address_report_t *r)
void dhcp6_set_publisher_node(uword node_index, uword event_type)
vl_api_interface_index_t sw_if_index
dhcp6_ia_na_client_state_t * client_state_by_sw_if_index
dhcp6_send_client_message_params_address_t * addresses
int dhcp6_client_enable_disable(u32 sw_if_index, u8 enable)
dhcp6_send_client_message_params_t params
Tell client about a DHCPv6 server reply event.
struct _vlib_node_registration vlib_node_registration_t
VLIB buffer representation.
dhcp6_address_info_t * addresses
dhcp6_report_common_t body
dhcp6_ia_na_client_main_t dhcp6_ia_na_client_main
dhcp6_ia_na_client_public_main_t dhcp6_ia_na_client_public_main