summaryrefslogtreecommitdiff
path: root/usr.sbin/dvmrpd
AgeCommit message (Expand)Author
2023-03-02improve the Nd lines such that the format is consistent for theJason McIntyre
2022-12-28spelling fixes; from paul tagliamonteJason McIntyre
2021-12-13including sys/cdefs.h manually started as a result of netbsd trying toTheo de Raadt
2021-10-15Don't declare variables as "unsigned char *" that are passed toChristian Weisgerber
2021-01-19Like ospfd allocate the recv buffer with malloc() on first call.Claudio Jeker
2021-01-19Make struct imsgev static like in the other routing daemons. With thisClaudio Jeker
2021-01-19Kill dvrmpd_process and log_procnames. Unneeded abstraction for thisClaudio Jeker
2021-01-19Cleanup control like in the other routing daemons. Move control_stateClaudio Jeker
2021-01-19Another pkt_ptr cleanup. There is actually no need to make the pktClaudio Jeker
2021-01-19Like all other log.c just exit(1) in fatal()Claudio Jeker
2020-05-16list example files in FILES with a short description: generally, "ExampleJason McIntyre
2020-02-10briefly mention /etc/examples/ in the FILES section of all theIngo Schwarze
2019-11-10Consistently use _rcctl enable foo_ in examples, it's simpler and lessLandry Breuil
2019-06-28When system calls indicate an error they return -1, not some arbitraryTheo de Raadt
2019-02-13(unsigned) means (unsigned int) which on ptrdiff_t or size_t or otherTheo de Raadt
2018-11-01- odd condition/test in PF lexerAlexandr Nedvedicky
2018-09-21add missing braces implied by indentationJonathan Gray
2018-09-07replace malloc()+strlcpy() with strndup() in cmdline_symset().miko
2018-07-11Do for most running out of memory err() what was done for most runningKenneth R Westerback
2018-07-09No need to mention which memory allocation entry point failed (malloc,Kenneth R Westerback
2018-07-08Be consistent in warn() and log_warn() usage whenKenneth R Westerback
2018-06-18remove the SECTIONS header, since a one line DESCRIPTION is a bit silly;Jason McIntyre
2018-04-26Plug leak in error case of the common 'varset' implementations.Kenneth R Westerback
2017-07-24Unify ROUNDUP macros for parsing route messages.friehm
2017-03-21From a syslog perspective it does not make sense to log fatal andAlexander Bluhm
2017-01-08Replace hand-rolled for(;;) traversal of ctl_conns TAILQ withKenneth R Westerback
2017-01-05Replace hand-rolled for(;;) emptying of 'symhead' TAILQ with moreKenneth R Westerback
2017-01-05Replace symset()'s hand-rolled for(;;) traversal of 'symhead' TAILQKenneth R Westerback
2016-09-02work on making log.c similar in all daemons:Sebastian Benoit
2016-09-02Simplify shutdown process.Renato Westphal
2016-09-02Close connections when msgbuf_write() returns 0.Renato Westphal
2016-09-02Don't fatal if the imsg pipe is closed, this is often triggered in theRenato Westphal
2016-06-21do not allow whitespace in macro names, i.e. "this is" = "a variable".Sebastian Benoit
2016-02-02Remove setproctitle() for the parent process. Because rc.d(8) uses processStuart Henderson
2015-12-07Remove unneeded strings.h includes. From Serguey Parkhomovsky.mmcc
2015-12-07Replace bzero with memset, and change a strings.h include to string.h tommcc
2015-12-07strings.h -> string.h to prevent implicit declarations. From Sergueymmcc
2015-12-05EAGAIN handling for imsg_read. OK henning@ benno@Claudio Jeker
2015-09-27As done for bgpd recently, rename if_mediatype to if_type in dvrmpd.Stefan Sperling
2015-07-27use file system path (.Pa) semantic markup macros where appropriate.Igor Sobrado
2015-05-22fix a non safe use of LIST_FOREACH with LIST_REMOVEJonathan Gray
2015-05-05use the sizeof the struct not the sizeof a pointer to the structJonathan Gray
2015-02-11Use sizeof(u_short) in the first check since there are RT messages thatClaudio Jeker
2015-02-10More SOCK_NONBLOCK adjustments similar to the other daemons.Claudio Jeker
2015-02-09Oups forgot to remove the enumsClaudio Jeker
2015-02-09Kill another session_socket_blockmode() ... 6 or so to go.Claudio Jeker
2015-01-16Replace <sys/param.h> with <limits.h> and other less dirty headers whereTheo de Raadt
2014-11-20Don't allow embedded nul characters in strings.Jonathan Gray
2014-11-18Nuke more obvious #include duplications.Kenneth R Westerback
2014-11-14Add gcc printf format attributes to yyerror() in parse.y files.Doug Hogan