Age | Commit message (Expand) | Author |
2014-11-17 | Further juggle startup code, putting config file reading after forking | Kenneth R Westerback |
2014-11-16 | Move some memory allocations/initialization and file reading to | Kenneth R Westerback |
2014-11-15 | Make -q (quiet) and -d (don't daemonize) options mutually exclusive. | Kenneth R Westerback |
2014-11-04 | Of the 14 occurances of free_client_lease() only 2 deal with leases | Kenneth R Westerback |
2014-11-04 | Instead of correcting things after the fact, use SOCK_NONBLOCK and SOCK_CLOEXEC | Philip Guenther |
2014-11-03 | No need to immediately remove an expired lease from the list of | Kenneth R Westerback |
2014-11-02 | Pesky whitespace and spurious parenthesis. | Kenneth R Westerback |
2014-11-01 | Try to ensure that the various lease timeouts are sane. i.e., renew | Kenneth R Westerback |
2014-10-29 | Calling a function to htonl() a constant 32-bit value into a stack | Kenneth R Westerback |
2014-10-27 | Compare with/use UINT16_MAX rather than 65535. Less magic is more. | Kenneth R Westerback |
2014-10-26 | Allow the current lease to expire without causing dhclient to seg | Kenneth R Westerback |
2014-10-17 | Nuke 'increase' which was always set to 1. Replace the if/else that tested | Kenneth R Westerback |
2014-10-02 | dhclient: add support for RFC 3442 local subnet routes | Matthew Dempsky |
2014-08-11 | When parsing 32 bit values, verify that we received 4 bytes. | Tobias Stoeckmann |
2014-07-13 | When renewing a lease, update client->active or you end up in a | Kenneth R Westerback |
2014-07-12 | Log a warning whenever RTM_DESYNC is seen. Thus giving entrail | Kenneth R Westerback |
2014-07-12 | Bring back resolv.conf write reduction. Race was something else. | Kenneth R Westerback |
2014-07-11 | Sigh. Further torture finds a race. Back to drawing board for | Kenneth R Westerback |
2014-07-11 | Move updating resolv.conf contents and active lease to before address | Kenneth R Westerback |
2014-07-11 | Don't write out a new resolv.conf until the new address is added | Kenneth R Westerback |
2014-07-09 | Print sizeof() value and size_t variable with %zu rather than %zd. | Kenneth R Westerback |
2014-05-23 | Make DEBUG a bit easier to use by calling setlogmask(LOG_UPTO(LOG_DEBUG)) | Kenneth R Westerback |
2014-05-23 | A #define to rename another #define which is then used only once introduces | Kenneth R Westerback |
2014-05-19 | Nuke some trailing whitespace that snuck in. | Kenneth R Westerback |
2014-05-19 | No point in trying to update the -L file on loss of link if no -L has | Kenneth R Westerback |
2014-05-18 | Don't add a lease to the leases TAILQ more than once. It tends to | Kenneth R Westerback |
2014-05-12 | Don't exit on encountering RTM_NEWADDR or RTM_DELADDR routing messages | Kenneth R Westerback |
2014-05-11 | Tweak DHCPREQUEST log message to omit 'port N', since the port is not | Kenneth R Westerback |
2014-05-11 | Rework/restore recorded lease handling. Actually use 'lease' | Kenneth R Westerback |
2014-05-05 | Zap trailing whitespace. Started by pointed comments from andre@. | Kenneth R Westerback |
2014-05-05 | A couple of malloc()+memset(0) -> calloc. | Kenneth R Westerback |
2014-05-04 | Factor out the code to set the expiry, renewal and rebinding times for | Kenneth R Westerback |
2014-04-30 | Preserve intended chronological order of leases in | Kenneth R Westerback |
2014-04-21 | Ooops. Delete discarded offered leases from correct TAILQ. More than | Kenneth R Westerback |
2014-04-20 | Make -L even more useful to monitoring processes. Truncate and | Kenneth R Westerback |
2014-04-17 | Oops. INADDR_ANY != INADDR_BROADCAST. Fixes DHCPDISCOVERY and | Kenneth R Westerback |
2014-04-17 | Eliminate a couple of always-NULL parameters. Eliminate some | Kenneth R Westerback |
2014-04-16 | Make dhclient -q even quieter. Make it immediately effective rather | Kenneth R Westerback |
2014-04-16 | OpenSSL is not the only place with bloated code! Remove unused | Kenneth R Westerback |
2014-02-09 | Don't use imsg_flush(), roll a local flush_unpriv_ibuf() that loops | Kenneth R Westerback |
2014-02-08 | Create dhclient lease files and dhcpd lease files with permissions 0640, | Kenneth R Westerback |
2014-02-07 | Create -L leases files with the same 0000 permissions as regular | Kenneth R Westerback |
2014-02-07 | Log failures to fchmod() or fchown() the file written in | Kenneth R Westerback |
2014-02-07 | Nuke unused #define CLIENT_PATH. A remnant of dhclient-script. | Kenneth R Westerback |
2014-01-25 | Correct parsing of dhclient.conf statements 'fixed-address' and | Kenneth R Westerback |
2014-01-21 | Allow dhclient.conf to specify 'fixed-address', 'next-server', | Kenneth R Westerback |
2014-01-21 | Add parsing for options 121 (classless-static-routes) and 249 | Kenneth R Westerback |
2014-01-20 | more %d type correctness; ok krw | Theo de Raadt |
2014-01-20 | %d cleanups, to other formats; ok krw | Theo de Raadt |
2014-01-17 | Do not follow symlinks for -l and -L arguments. | Tobias Stoeckmann |