Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-05-14 | Improve compatibility with some ipv4 networks. | Loic Prylli | |
- dnsmasq has been seen to null-terminate the bootfile option, similar treament can occur for tftp-servername (although tftp-servername option usage is less common). - for the gateway information to be present in final packet, the Router option should be queried again in request as in discover (which matches behavior of udhcpc/dhclient). Tested: pxeboot with u-root on dnsmask/ipv4 client. Signed-off-by: Loic Prylli <lprylli@netflix.com> | |||
2019-03-13 | [dhcpv4] simplify userclass handling (#249) | Pablo Mazzini | |
2019-01-24 | dhcpv4: getters instead of getters | Christopher Koch | |
From: r := GetRouter(d.Options) To: r := d.Router() | |||
2019-01-24 | dhcpv4: nicer API for option parsing. | Christopher Koch | |
From: r := d.GetOneOption(OptionRouter).(*OptRouter).Routers d.UpdateOption(&OptRouter{Routers: []net.IP{net.IP{192, 168, 0, 1}}}) To: r := GetRouter(d.Options) d.UpdateOption(OptRouter(net.IP{192, 168, 0, 1}, ...)) | |||
2019-01-19 | dhcpv4: consolidate string options into one file. | Christopher Koch | |