Age | Commit message (Expand) | Author |
2017-07-22 | Rename *_add_address to *_set_address to reflect that the | Kenneth R Westerback |
2017-07-21 | s/set_interface_mtu/set_mtu/g | Kenneth R Westerback |
2017-07-17 | Nuke unused variables 'deleting' and 'adding'. | Kenneth R Westerback |
2017-07-14 | Replace remaining "!var" expressions with | Kenneth R Westerback |
2017-07-14 | Replace remaining "!<pointer>" expressions with | Kenneth R Westerback |
2017-07-10 | Use ioctlfd/routefd sockets rather than rolling one's own | Kenneth R Westerback |
2017-07-10 | Use a modern spacious idiom on all function local variable | Kenneth R Westerback |
2017-07-09 | Be consistent. "return (e);" -> "return e;" | Kenneth R Westerback |
2017-07-09 | Whitespace tweaks to assuage auto-indent. | Kenneth R Westerback |
2017-07-08 | Always use uintNN_t instead of sometimes u_intNN_t | Kenneth R Westerback |
2017-07-02 | Unbreak tree by putting revised resolv_conf_priority() declaration in | Kenneth R Westerback |
2017-07-01 | Eliminate multiple socket openings/closings and pass | Kenneth R Westerback |
2017-06-29 | delete_addresses(), interface_status(), addressinuse(), | Kenneth R Westerback |
2017-06-28 | Only pass required fields of interface_info to priv_* functions | Kenneth R Westerback |
2017-06-28 | delete_route() doesn't need any info from its struct interface_info | Kenneth R Westerback |
2017-06-28 | resolv_conf_priority() is a function local to kroute.c, no | Kenneth R Westerback |
2017-06-28 | Stop trying to clean up addresses, routes and "-L" file | Kenneth R Westerback |
2017-06-28 | Be consistent and always use socket(..., SOCK_DGRAM, ...) for | Kenneth R Westerback |
2017-06-25 | priv_add_address() is no longer invoked to signal the deletion of the | Kenneth R Westerback |
2017-06-24 | Tweak handling of HUP and new LLADDR. Just use expose and use sighup() | Kenneth R Westerback |
2017-06-23 | Take reyk's imsg resolv.conf improvements of a while ago to their | Kenneth R Westerback |
2017-04-12 | Shuffle another function. | Kenneth R Westerback |
2017-04-11 | Shuffle route/interface changing functions together into kroute.c. Try to | Kenneth R Westerback |
2017-04-11 | Fold priv_write_file() into its only remaining user | Kenneth R Westerback |
2017-04-09 | Seven casts, a couple of tweaks and CFLAGS+=-Wsign-compare for the | Kenneth R Westerback |
2017-04-08 | Reduce the overburden of signed vs unsigned comparisons by sprinkling | Kenneth R Westerback |
2017-04-05 | Shuffle sendhup() into dispatch.c, the only place it is used. | Kenneth R Westerback |
2017-03-08 | Move ROUNDUP() to top of file, outside of warring #ifdef's to come. | Kenneth R Westerback |
2017-02-12 | Eliminate most strerror() invocations by using log_warn() and fatal() | Kenneth R Westerback |
2017-02-12 | Adjust lines that are too long. | Kenneth R Westerback |
2017-02-12 | Switch from 'legacy' errwarn.c to standard daemon logging functions. | Kenneth R Westerback |
2016-08-23 | Make the 'ifi' global local to dhclient.c and pass it as an argument to | Martin Pieuchot |
2016-07-21 | Use explicit idiom when testing the result of strcmp() and strncmp(). | Kenneth R Westerback |
2016-02-06 | Eliminate #include inside *.h files and include only needed headers in | Kenneth R Westerback |
2015-12-19 | Don't exit if a route can't be added. Just log particulars and | Kenneth R Westerback |
2015-12-19 | Delete superfluous "close(s);return" just before "close(s);<function | Kenneth R Westerback |
2015-12-18 | Check ioctl() result with == -1, not < 0. Break long line. | Kenneth R Westerback |
2015-02-10 | Groundwork for better route support over multiple interfaces by | Kenneth R Westerback |
2015-02-08 | Get rid of a bunch of memset()'s where struct variables and arrays | Kenneth R Westerback |
2015-02-07 | Add support for interface-mtu (option 26). | Kenneth R Westerback |
2015-02-07 | GC unused parameters now that ifname and rdomain are not used in | Kenneth R Westerback |
2015-02-06 | matthew@ points out that it's a bad idea to rely on the non-privileged, | Kenneth R Westerback |
2015-01-31 | Always free(buf) if errmsg is set while trying to flush routes. | Kenneth R Westerback |
2015-01-30 | Tweak error message to say 'realloc' since that's what's failing, | Kenneth R Westerback |
2014-10-27 | Zap extraneous whitespace and a stuttered extra 'break;'. | Kenneth R Westerback |
2014-07-14 | Make sure to correctly exit the loop in priv_flush_routes() in case of | Miod Vallat |
2014-07-09 | Print sizeof() value and size_t variable with %zu rather than %zd. | Kenneth R Westerback |
2014-05-05 | Zap trailing whitespace. Started by pointed comments from andre@. | Kenneth R Westerback |
2014-02-13 | Hard looping on EAGAIN is bad. Just fall out to outer event loop | Kenneth R Westerback |
2014-02-09 | Don't use imsg_flush(), roll a local flush_unpriv_ibuf() that loops | Kenneth R Westerback |