2019-08-21 10:32:05 +00:00
|
|
|
#ifndef DHCP_RELAY_CONFIG_H_
|
|
|
|
#define DHCP_RELAY_CONFIG_H_
|
|
|
|
#include "dhcp_lib.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ret_code dhcp_relay_config_chk(uint source,uint *config_type,
|
|
|
|
pointer input, int *input_len,
|
|
|
|
pointer output, int *output_len);
|
|
|
|
|
|
|
|
ret_code dhcp_relay_config_proc(uint source, uint config_type,
|
|
|
|
pointer input, int input_len,
|
|
|
|
pointer output, int *output_len);
|
|
|
|
|
2019-09-17 07:46:49 +00:00
|
|
|
ret_code dhcp_relay_config_get_all(uint source, pointer output, int *output_len);
|
|
|
|
|
|
|
|
|
2019-08-21 10:32:05 +00:00
|
|
|
|
|
|
|
#endif
|