18 lines
467 B
C
18 lines
467 B
C
|
#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);
|
||
|
|
||
|
|
||
|
#endif
|