X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fdhcp%2Fclient.h;h=5191fcf0fa825d2a4c8de7c3877f3648ff666167;hb=038e1dfbd;hp=72cbf66733f0aee59dab8a5b861f19adaf780bcd;hpb=daff1784037376f4a5caec2f5975f9b5fc23d5a4;p=vpp.git diff --git a/src/vnet/dhcp/client.h b/src/vnet/dhcp/client.h index 72cbf66733f..5191fcf0fa8 100644 --- a/src/vnet/dhcp/client.h +++ b/src/vnet/dhcp/client.h @@ -64,14 +64,13 @@ typedef struct dhcp_client_t_ ip4_address_t dhcp_server; u32 subnet_mask_width; /* option 1 */ ip4_address_t router_address; /* option 3 */ + ip4_address_t *domain_server_address; /* option 6 */ u32 lease_renewal_interval; /* option 51 */ u32 lease_lifetime; /* option 59 */ /* Requested data (option 55) */ u8 *option_55_data; - u8 *l2_rewrite; - /* hostname and software client identifiers */ u8 *hostname; u8 *client_identifier; /* software version, e.g. vpe 1.0 */ @@ -86,6 +85,13 @@ typedef struct dhcp_client_t_ u8 client_hardware_address[6]; u8 client_detect_feature_enabled; + /* the unicast adjacency for the DHCP server */ + adj_index_t ai_ucast; + /* the broadcast adjacency on the link */ + adj_index_t ai_bcast; + /* IP DSCP to set in sent packets */ + ip_dscp_t dscp; + dhcp_event_cb_t event_callback; } dhcp_client_t; @@ -117,6 +123,7 @@ typedef struct /* Information used for event callback */ u32 client_index; u32 pid; + ip_dscp_t dscp; dhcp_event_cb_t event_callback; } dhcp_client_add_del_args_t; @@ -139,7 +146,8 @@ extern int dhcp_client_config (u32 is_add, u8 * hostname, u8 * client_id, dhcp_event_cb_t event_callback, - u8 set_broadcast_flag, u32 pid); + u8 set_broadcast_flag, + ip_dscp_t dscp, u32 pid); /** * callback function for clients walking the DHCP client configurations