Add aaa-12 添加dhcp host subnet getall

SOL 添加dhcp host subnet getall
修改人:wuqihy
检视人:yinbin

Signed-off-by: wuqihy <wuqihy@cmhi.chinamobile.com>
This commit is contained in:
wuqihy 2019-09-17 15:46:49 +08:00
parent d8d3e7acc9
commit 32764bd0cc
4 changed files with 13 additions and 3 deletions

View File

@ -232,7 +232,7 @@
dhcp_host_config_chk, \ dhcp_host_config_chk, \
dhcp_host_config_proc, \ dhcp_host_config_proc, \
dhcp_host_config_get, \ dhcp_host_config_get, \
NULL \ dhcp_host_config_get_all \
},\ },\
{\ {\
DHCP_SUBNET_CONFIG, \ DHCP_SUBNET_CONFIG, \
@ -241,7 +241,7 @@
dhcp_subnet_config_chk, \ dhcp_subnet_config_chk, \
dhcp_subnet_config_proc, \ dhcp_subnet_config_proc, \
dhcp_subnet_config_get, \ dhcp_subnet_config_get, \
NULL \ dhcp_subnet_config_get_all \
},\ },\
{\ {\
DHCP_RELAY_CONFIG, \ DHCP_RELAY_CONFIG, \
@ -250,7 +250,7 @@
dhcp_relay_config_chk, \ dhcp_relay_config_chk, \
dhcp_relay_config_proc, \ dhcp_relay_config_proc, \
NULL, \ NULL, \
NULL \ dhcp_relay_config_get_all \
},\ },\
{\ {\
DHCP_CLIENT_CONFIG, \ DHCP_CLIENT_CONFIG, \

View File

@ -23,4 +23,7 @@ ret_code dhcp_host_config_get(uint source,
pointer input, int input_len, pointer input, int input_len,
pointer output, int *output_len); pointer output, int *output_len);
ret_code dhcp_host_config_get_all(uint source, pointer output, int *output_len);
#endif #endif

View File

@ -13,5 +13,8 @@ ret_code dhcp_relay_config_proc(uint source, uint config_type,
pointer input, int input_len, pointer input, int input_len,
pointer output, int *output_len); pointer output, int *output_len);
ret_code dhcp_relay_config_get_all(uint source, pointer output, int *output_len);
#endif #endif

View File

@ -17,6 +17,10 @@ ret_code dhcp_subnet_config_get(uint source,
pointer output, int *output_len); pointer output, int *output_len);
ret_code dhcp_subnet_config_get_all(uint source, pointer output, int *output_len);
#endif #endif