FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
dhcp6_ia_na_client_dp.h File Reference
+ Include dependency graph for dhcp6_ia_na_client_dp.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  dhcp6_send_client_message_params_address_t
 
struct  dhcp6_send_client_message_params_t
 
struct  dhcp6_ia_na_client_state_t
 
struct  dhcp6_ia_na_client_main_t
 
struct  dhcp6_address_info_t
 
struct  address_report_t
 
struct  dhcp6_ia_na_client_public_main_t
 

Macros

#define vl_typedefs   /* define message structures */
 
#define VNET_DHCP6_REPLY_EVENT_FUNCTION(f)
 

Enumerations

enum  { DHCP6_DP_REPLY_REPORT, DHCP6_DP_REPORT_MAX }
 

Functions

void dhcp6_send_client_message (vlib_main_t *vm, u32 sw_if_index, u8 stop, dhcp6_send_client_message_params_t *params)
 
void dhcp6_set_publisher_node (uword node_index, uword event_type)
 
int dhcp6_publish_report (address_report_t *r)
 
void vl_api_want_dhcp6_reply_events_t_handler (vl_api_want_dhcp6_reply_events_t *mp)
 
void vl_api_dhcp6_send_client_message_t_handler (vl_api_dhcp6_send_client_message_t *mp)
 
void vl_api_dhcp6_clients_enable_disable_t_handler (vl_api_dhcp6_clients_enable_disable_t *mp)
 

Variables

dhcp6_ia_na_client_main_t dhcp6_ia_na_client_main
 
vlib_node_registration_t dhcp6_reply_process_node
 (constructor) VLIB_REGISTER_NODE (dhcp6_reply_process_node) More...
 
dhcp6_ia_na_client_public_main_t dhcp6_ia_na_client_public_main
 

Macro Definition Documentation

#define vl_typedefs   /* define message structures */

Definition at line 90 of file dhcp6_ia_na_client_dp.h.

#define VNET_DHCP6_REPLY_EVENT_FUNCTION (   f)
Value:
\
static void __vnet_dhcp6_reply_event_function_init_##f (void) \
__attribute__((__constructor__)) ; \
\
static void __vnet_dhcp6_reply_event_function_init_##f (void) \
{ \
dhcp6_ia_na_client_public_main_t * nm = &dhcp6_ia_na_client_public_main; \
static _vnet_dhcp6_reply_event_function_list_elt_t init_function; \
init_function.next_dhcp6_reply_event_function = nm->functions; \
nm->functions = &init_function; \
init_function.fp = (void *) &f; \
} \
\
static void __vnet_dhcp6_reply_event_function_deinit_##f (void) \
__attribute__((__destructor__)) ; \
\
static void __vnet_dhcp6_reply_event_function_deinit_##f (void) \
{ \
dhcp6_ia_na_client_public_main_t * nm = &dhcp6_ia_na_client_public_main; \
_vnet_dhcp6_reply_event_function_list_elt_t *next; \
if (nm->functions->fp == (void *) &f) \
{ \
nm->functions = \
nm->functions->next_dhcp6_reply_event_function; \
return; \
} \
next = nm->functions; \
while (next->next_dhcp6_reply_event_function) \
{ \
if (next->next_dhcp6_reply_event_function->fp == (void *) &f) \
{ \
next->next_dhcp6_reply_event_function = \
next->next_dhcp6_reply_event_function->next_dhcp6_reply_event_function; \
return; \
} \
next = next->next_dhcp6_reply_event_function; \
} \
}
_vnet_dhcp6_reply_event_function_list_elt_t * functions
dhcp6_ia_na_client_public_main_t dhcp6_ia_na_client_public_main

Definition at line 128 of file dhcp6_ia_na_client_dp.h.

Enumeration Type Documentation

anonymous enum
Enumerator
DHCP6_DP_REPLY_REPORT 
DHCP6_DP_REPORT_MAX 

Definition at line 112 of file dhcp6_ia_na_client_dp.h.

Function Documentation

int dhcp6_publish_report ( address_report_t r)

Definition at line 67 of file dhcp6_ia_na_client_dp.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void dhcp6_send_client_message ( vlib_main_t vm,
u32  sw_if_index,
u8  stop,
dhcp6_send_client_message_params_t params 
)

Definition at line 388 of file dhcp6_ia_na_client_dp.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void dhcp6_set_publisher_node ( uword  node_index,
uword  event_type 
)

Definition at line 75 of file dhcp6_ia_na_client_dp.c.

+ Here is the caller graph for this function:

void vl_api_dhcp6_clients_enable_disable_t_handler ( vl_api_dhcp6_clients_enable_disable_t mp)

Definition at line 476 of file dhcp6_client_common_dp.c.

void vl_api_dhcp6_send_client_message_t_handler ( vl_api_dhcp6_send_client_message_t mp)

Definition at line 434 of file dhcp6_ia_na_client_dp.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void vl_api_want_dhcp6_reply_events_t_handler ( vl_api_want_dhcp6_reply_events_t mp)

Definition at line 588 of file dhcp6_ia_na_client_dp.c.

+ Here is the call graph for this function:

Variable Documentation

dhcp6_ia_na_client_main_t dhcp6_ia_na_client_main

Definition at line 47 of file dhcp6_ia_na_client_dp.c.

dhcp6_ia_na_client_public_main_t dhcp6_ia_na_client_public_main

Definition at line 48 of file dhcp6_ia_na_client_dp.c.

vlib_node_registration_t dhcp6_reply_process_node

(constructor) VLIB_REGISTER_NODE (dhcp6_reply_process_node)

Definition at line 579 of file dhcp6_ia_na_client_dp.c.