summaryrefslogtreecommitdiff
path: root/usr.sbin/slaacd/frontend.c
AgeCommit message (Collapse)Author
2017-05-31remove DEBUG_IMSG; I have figured out imsg flow by now; no binaryFlorian Obser
change
2017-05-30Send a source link-layer address option with our solicitations.Florian Obser
Servers following RFC 7772 may then send us unicast router advertisments and thus reduce multicast traffic which might increase the battery life of other devices using the same shared media.
2017-05-30whitespace encountered during reviewTheo de Raadt
2017-05-29clang points out that the first argument to setproctitle is a formatFlorian Obser
string. Not really an issue since we are eventually passing in a string literal... While here don't set the proctitle for the main process to play nicer with rc.d(8)
2017-05-29only send router solicitation on RTM_NEWADDR if the l2 address changedFlorian Obser
2017-05-28propose and configure default gatewayFlorian Obser
2017-05-27Generate a fake ack (or is it an alternative ack?) internally.Florian Obser
This allows slaacd to configure addresses in the absence of netcfgd and might be a less scary step forward to move stateless address autoconfiguration out of the kernel. This intentionally a compile time option and will go away once we figure out how to do proposals.
2017-05-27show address proposals in slaacdctl show interface outputFlorian Obser
2017-05-27delete proposal if address gets deletedFlorian Obser
2017-05-27sync route socket processing to netcfgdFlorian Obser
- handle multiple messages - switch to get_rtaddrs() to get an array of addresses transported in the message
2017-05-27configure address on interfaceFlorian Obser
2017-05-27handle proposal ackFlorian Obser
2017-03-20simplify control socket path handling; sync from netcfgd by krw@Florian Obser
2017-03-19introduce & use update_iface() function, we need the full song & danceFlorian Obser
in more places
2017-03-19Get and display link local address, needed to generate addresses fromFlorian Obser
a router advertisement.
2017-03-18Add slaacd, a Stateless Address AutoConfiguration Daemon.Florian Obser
Based on krw's newd effort where he did all the heavy lifting to extract a generic OpenBSD-style privsep daemon out of all the existing daemons in tree. It's at a point now where it makes sense to work on it in tree. Sounds good to deraadt@