27 lines
717 B
C
27 lines
717 B
C
|
#ifndef DHCP_HOST_CONFIG_H_
|
||
|
#define DHCP_HOST_CONFIG_H_
|
||
|
#include "dhcp_lib.h"
|
||
|
|
||
|
|
||
|
|
||
|
/*
|
||
|
struct host {
|
||
|
char *host_name;
|
||
|
char *hardware_ethernet;
|
||
|
char *fixed_address;
|
||
|
}*/
|
||
|
|
||
|
ret_code dhcp_host_config_chk(uint source, uint *config_type,
|
||
|
pointer input, int *input_len,
|
||
|
pointer output, int *output_len);
|
||
|
|
||
|
ret_code dhcp_host_config_proc(uint source, uint config_type,
|
||
|
pointer input, int input_len,
|
||
|
pointer output, int *output_len);
|
||
|
|
||
|
ret_code dhcp_host_config_get(uint source,
|
||
|
pointer input, int input_len,
|
||
|
pointer output, int *output_len);
|
||
|
|
||
|
#endif
|