Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-01-28 | update bsdp | Pablo Mazzini | |
2019-01-28 | dhcpv4: moved client into dhcpv4/client4 | Andrea Barberio | |
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-09 | dhcpv4: export packet members; remove setters and getters. | Christopher Koch | |
2018-11-27 | simplify client interface (#181) | Pablo Mazzini | |
2018-11-21 | remove deprecated functions (#182) | Pablo Mazzini | |
2018-08-13 | BSDP: Exchange returns list of pointers, not list of objects | Andrea Barberio | |
2018-07-27 | [DHCPv4] BroadcastSendReceive now can wait for specific reply types (#95) | insomniac | |
2018-04-18 | Fixed DHCPv4 listener (#37) | insomniac | |
Fixed DHCPv4 listener There were two bugs in the DHCPv4 client: * the listener was called *after* the sender * the listener was not binding to the same interface as the sender, but listening for every UDP packet This is now fixed. | |||
2018-03-30 | Remove build tags (#27) | Sean Karlage | |
Removes build tags from BSDP and breaks vendor class identifier into OS-specific implementations so it is easier to integrate bsdp with other libs. | |||
2018-03-26 | Add some more specific bsdp options + vendor specific implementation (#21) | Sean Karlage | |
Add some more specific options + vendor specific implementation | |||
2018-03-10 | Move Exchange back to method on client, rebase | Sean Karlage | |
2018-03-10 | Refactor client code, add timeout capabilities | Sean Karlage | |
2018-03-07 | Fixed build tag for darwin-only bsdp package | Andrea Barberio | |
2018-03-05 | Move bsdp functionality to its own subpackage. Bring in ↵ | Sean Karlage | |
stretchr/testify/assert for nicer asserts |