Searched refs:option_put (Results 1 – 1 of 1) sorted by relevance
/external/dnsmasq/src/ |
D | rfc2131.c | 87 static void option_put(struct dhcp_packet *mess, unsigned char *end, int opt, int len, unsigned int… 760 option_put(mess, end, OPTION_MESSAGE_TYPE, 1, DHCPACK); in dhcp_reply() 761 option_put(mess, end, OPTION_SERVER_IDENTIFIER, INADDRSZ, htonl(context->local.s_addr)); in dhcp_reply() 807 option_put(mess, end, OPTION_MESSAGE_TYPE, 1, in dhcp_reply() 809 option_put(mess, end, OPTION_SERVER_IDENTIFIER, INADDRSZ, htonl(context->local.s_addr)); in dhcp_reply() 955 option_put(mess, end, OPTION_MESSAGE_TYPE, 1, DHCPOFFER); in dhcp_reply() 956 …option_put(mess, end, OPTION_SERVER_IDENTIFIER, INADDRSZ, ntohl(server_id(context, override, fallb… in dhcp_reply() 957 option_put(mess, end, OPTION_LEASE_TIME, 4, time); in dhcp_reply() 961 option_put(mess, end, OPTION_T1, 4, (time/2)); in dhcp_reply() 962 option_put(mess, end, OPTION_T2, 4, (time*7)/8); in dhcp_reply() [all …]
|