master
work on making log.c similar in all daemons:
Convert simple stuff in usr.sbin over to new imsgbuf_init behaviour
Same control cleanup that was done for ospfd and ripd. Move the control_state and ctl_conns structs into control.c nothing else uses these structs.
Simplify handling of multicast addresses.
improve the Nd lines such that the format is consistent for the various *d, *conf, *ctl files (where relevant) and simple;
use some sizeof, rather than INADDRSZ/IN6ADDRSZ; ok claudio
spelling fixes; from paul tagliamonte any parts of his diff not taken are noted on tech
Welcome eigrpd
Delete obsolete /* ARGSUSED */ lint comments.
remove duplicate includes
including sys/cdefs.h manually started as a result of netbsd trying to macro-build a replacement for sccsid, and was done without any concern for namespace damage. Unfortunately this practice started infecting other code as others were unaware they didn't need the file. ok millert guenther
Rewrite send_packet to update the eigrp header without using ibuf_seek.
inet_pton returns 0 and -1 for error.
Make functions and variables static whenever possible.
Minor tweaks
Start using the new ibuf API in eigrpd. One ibuf_seek() still left since the change is not trivial and I don't have a eigrp testbed. OK tb@