summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ripd/ripe.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Keep track of dead peers instead of freeing them right away.jca2017-01-171-3/+3
| | | | | This mimics what ospfd does, and avoids a (mostly harmless) use-after-free. Delay suggested by claudio@, ok florian@
* Remove unnecessary netinet/in_systm.h include.lteo2014-10-251-2/+1
| | | | ok millert@
* Rename some imsg bits to make namespace collisions less likely buf tonicm2010-05-261-4/+4
| | | | | | ibuf, buf_read to ibuf_read, READ_BUF_SIZE to IBUF_READ_SIZE. ok henning gilles claudio jacekm deraadt
* Add support for demotion counter.michele2008-12-171-1/+2
| | | | | | | When interfaces go up/down the demotion counter of the specified group is decreased/increased. ok henning@
* Make the packet buffer u_int8_t * everywhere. This is binary data and notclaudio2007-10-241-5/+5
| | | | a string.
* Massive cleanup in the authentication code. the simple auth_key and the cryptclaudio2007-10-181-2/+2
| | | | | | | | | keys are not strings so a) use u_int8_t instead of char and b) uses memcpy to copy the full MAX_SIMPLE_AUTH_LEN resp. MD5_DIGEST_LENGTH bytes around. The parser needs some special code to ensure that the string is not to long and if it is shorter then the buffer the rest needs to be zero padded. Avoid to use strncpy() instead use a bzero(); memcpy() combo. with and OK deraadt@
* Improve the handling of "counting to infinity" mechanism and add an heuristicmichele2007-04-091-3/+3
| | | | | | higly recommended in the rfc. tested by me and OK claudio@
* Remove unused parameter in nbr_newmichele2007-03-271-2/+2
|
* add timeout for failed nbr structuresmichele2007-01-231-4/+3
| | | | OK claudio@ henning@
* clear lists before deleting neighbormichele2006-11-101-2/+3
| | | | OK claudio@ henning@
* create a temporary neighbor instead of a permanent one when a request is receivedmichele2006-10-311-1/+2
|
* Welcome ripdnorby2006-10-181-0/+146
started by Michele Marchetto some time ago by using the imsg/three process framework of ospfd. He implemented most of the daemon with a little help and guidance from Claudio and I. Currently the daemon is more or less complete, with the exception of key lifetime and rollover. Not yet connected to the builds. OK claudio@