Searched refs:option_put (Results 1 – 1 of 1) sorted by relevance
/external/dnsmasq/src/ |
D | rfc2131.c | 89 static void option_put(struct dhcp_packet* mess, unsigned char* end, int opt, int len, 673 option_put(mess, end, OPTION_MESSAGE_TYPE, 1, DHCPACK); in dhcp_reply() 674 option_put(mess, end, OPTION_SERVER_IDENTIFIER, INADDRSZ, htonl(context->local.s_addr)); in dhcp_reply() 715 option_put(mess, end, OPTION_MESSAGE_TYPE, 1, in dhcp_reply() 717 option_put(mess, end, OPTION_SERVER_IDENTIFIER, INADDRSZ, in dhcp_reply() 856 option_put(mess, end, OPTION_MESSAGE_TYPE, 1, DHCPOFFER); in dhcp_reply() 857 option_put(mess, end, OPTION_SERVER_IDENTIFIER, INADDRSZ, in dhcp_reply() 859 option_put(mess, end, OPTION_LEASE_TIME, 4, time); in dhcp_reply() 862 option_put(mess, end, OPTION_T1, 4, (time / 2)); in dhcp_reply() 863 option_put(mess, end, OPTION_T2, 4, (time * 7) / 8); in dhcp_reply() [all …]
|