Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-05-28 | Break circular dependency on u-root | Chris Koch | |
u-root -> dhcp -> u-root is the circular dependency. Which is fine, except we messed up modules in u-root big time. We need to break the circular dep for now. Signed-off-by: Chris Koch <chrisko@google.com> | |||
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-14 | dhcpv4: thoroughly fix type docs. Refer to RFCs. | Christopher Koch | |
2019-01-14 | dhcpv4: move all list of IPs types to options_ips.go. | Christopher Koch | |