aboutsummaryrefslogtreecommitdiff
path: root/toys/pending/dhcpd.c
AgeCommit message (Collapse)Author
2015-11-03dhcp leanup: remove flag_get() and flag_chk()Rob Landley
2015-10-23fix dhcpd warningYeongdeok Suh
2015-07-10I added dhcpd -6 option.Yeongdeok Suh
It's for supporting ipv6, and I referred to RFC 3315 Specification http://www.rfc-base.org/txt/rfc-3315.txt There are some different kind of requests in dhcpd6, but I inplemented only a basic protocol. (Solicit - Advertise - Request - Reply) There's a sample packet as below. toybox dhcpd works in the same way. http://packetlife.net/captures/DHCPv6.cap
2015-07-03Added i option to use other interface on running dhcpd.Hyejin Kim
2015-01-01Switch a lot of strncpy() calls to xstrncpy().Rob Landley
2014-12-02Switching on fortify was not kind to the pending directory. Fix the actual ↵Rob Landley
build break (open(O_CREAT) without permissions).
2014-07-17Use libc daemon() instead of pending daemonize.Rob Landley
2014-04-23usage: is lower case (the help generator looks for that, might as well be ↵Rob Landley
consistent).
2013-11-02Merge toynet.h into toys.h: musl supports it and micromanaging uClibc config ↵Rob Landley
options isn't very interesting anymore.
2013-09-03Convert dhcp/dhcpd from utoa() to sprintf().Rob Landley
2013-08-14DHCP client and server, from Ashwini Sharma.Rob Landley