fixed the name of the second parameter in declaration of qse_dhcp4_find_option()

This commit is contained in:
hyung-hwan 2018-09-28 16:32:36 +00:00
parent 5743a341cc
commit 80ceed7bb2

View File

@ -49,7 +49,7 @@ enum qse_dhcp4_opt_t
QSE_DHCP4_OPT_BROADCAST = 0x1c,
QSE_DHCP4_OPT_NTP_SERVER = 0x2a,
QSE_DHCP4_OPT_WINS_SERVER = 0x2c,
QSE_DHCP4_OPT_REQUESTED_IP = 0x32,
QSE_DHCP4_OPT_REQUESTED_IPADDR = 0x32,
QSE_DHCP4_OPT_LEASE_TIME = 0x33,
QSE_DHCP4_OPT_OVERLOAD = 0x34, /* overload sname or file */
QSE_DHCP4_OPT_MESSAGE_TYPE = 0x35,
@ -62,6 +62,7 @@ enum qse_dhcp4_opt_t
QSE_DHCP4_OPT_VENDOR = 0x3c,
QSE_DHCP4_OPT_CLIENT_ID = 0x3d,
QSE_DHCP4_OPT_RELAY = 0x52,
QSE_DHCP4_OPT_SUBNET_SELECTION = 0x76,
QSE_DHCP4_OPT_END = 0xFF
};
@ -193,7 +194,7 @@ QSE_EXPORT int qse_dhcp4_walk_options (
QSE_EXPORT qse_dhcp4_opt_hdr_t* qse_dhcp4_find_option (
const qse_dhcp4_pktinf_t* pkt,
int ode
int code
);
QSE_EXPORT qse_uint8_t* qse_dhcp4_get_relay_suboption (