summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2005-03-29walk & free network and filter lists after parse errorsHenning Brauer
ok claudio theo
2005-03-28KNFNiall O'Higgins
no binary changes.
2005-03-28- More KNFNiall O'Higgins
- Forgot an $OpenBSD$ no binary changes.
2005-03-28one line was 81 chars long. break it up.Niall O'Higgins
2005-03-28clean up this code. make it conform as closely to KNF as possible withoutNiall O'Higgins
introducing any binary changes. two files here have different binary output when the number of lines changes, we will finish cleaning those in another pass.
2005-03-28walk & free peer_l after failed config parsing attemptsHenning Brauer
2005-03-28ewps, this was not supposed to creep inHenning Brauer
2005-03-28free rules_l if the initial config file parse failsHenning Brauer
2005-03-28KNFHenning Brauer
2005-03-28rip out httpd's homegrown sha-1 implementation and use our own.Niall O'Higgins
ok henning@, mod_ssl verified by me. From Sergey Smitienk <hunter@comsys.com.ua> via henning@
2005-03-28better diagnostics on bind() failureHenning Brauer
2005-03-28- KNFNiall O'Higgins
- remove os-aix-dso.c since we don't even compile it. no binary changes.
2005-03-28rip out httpd's homegrown md5 implementation and use our own.Niall O'Higgins
ok henning@, mod_ssl and digest authentication verified by me. From Sergey Smitienk <hunter@comsys.com.ua>
2005-03-28add some const to ether_*. remove bonus prototypes this brought out.Ted Unangst
ok deraadt@
2005-03-27- convert to getopt(3)Niall O'Higgins
- add a usage() function that exits non-zero ok henning@ otto@
2005-03-26inet_addr("127.0.0.1") -> htonl(INADDR_LOOPBACK)Claudio Jeker
Use IN_CLASSA_NET instead of hard coded 0xff000000 OK henning@
2005-03-26proper check on log type. ok henning claudioTed Unangst
2005-03-26simplify state engine, the old one was very confusing and wrong too.Otto Moerbeek
ok moritz@ "just get this in" deraadt@
2005-03-26explciitely 0-initialize pidsHenning Brauer
2005-03-26Prototypes where moved to ospfd.h so no need to keep them here.Claudio Jeker
2005-03-26ospfctl bits for the "ospfctl show fib interface" part. This will printClaudio Jeker
the interface status as seen from the parent kroute perspective. OK henning@ norby@
2005-03-26Implement the IMSG_CTL_IFINFO bits correctly. This is needed forClaudio Jeker
"ospfctl show fib interface". OK henning@ norby@
2005-03-26Move the path_empty()/path_destroy() check out of the inner for-loop.Claudio Jeker
Makes the code more obvious. Idea from tedu@ OK henning@
2005-03-26kroute.c cleanup, simplify code and remove unused functions.Claudio Jeker
OK henning@
2005-03-26fix a little race on SIGCHLD where we must delay the claenup untilHenning Brauer
we invalidated all child pids in case both were killed in a very short time, spotted by and diff from Michael Knudsen <e@molioner.dk>, claudio ok
2005-03-26start sentence with capital letterPeter Valchev
2005-03-25all hail Theo and do as He wishes.Marc Espie
2005-03-25Use the return value from getopt() instead of optopt in non-errorJared Yanovich
cases since optopt is not set in these cases, and it is not required by POSIX that it should be. ok millert otto
2005-03-25use getopt() for argument list parsingRobert Nagy
ok otto@ henning@
2005-03-25whitespaceMoritz Jodeit
2005-03-25what is an ospfe engine?Henning Brauer
2005-03-25extra char in getopt string, Michael Knudsen <e@molioner.dk>Henning Brauer
2005-03-25whitespaceOtto Moerbeek
2005-03-24one more fatal/fatalx, alexanderHenning Brauer
2005-03-24fatal vs fatalx, Alexander von GernlerHenning Brauer
2005-03-24whitespace;Jason McIntyre
2005-03-24soem fatal()s that should be fatalx()s, Alexander von GernlerHenning Brauer
2005-03-24support blowfish encryption in the password files and use it by defaultHenning Brauer
From: Sergey Smitienko <hunter@comsys.com.ua>, markus ok
2005-03-24fix memory leak in error paths. found with coverity prevent.Ted Unangst
ok claudio henning
2005-03-23Move the neighbor checking code from merge_config() to neighbor_consistent()Claudio Jeker
where it belongs. OK henning@
2005-03-23mini KNFClaudio Jeker
2005-03-23The interface name in struct sockaddr_dl may not be nul terminated andClaudio Jeker
so the strlcpy() will copy to much. Use sa_nlen instead with some additional logic. This fixes a problem where interfaces where not found. OK norby@
2005-03-23Sync mask2prefixlen() with the kroute.c version of ospfd because they shareClaudio Jeker
the same prototype definition comming from ospfd.h. OK norby@
2005-03-23prefixlen2mask() should return a network byte order result as it does implyClaudio Jeker
by using an in_addr_t as return type. It simplyfies also the usage as in most cases the mask is used with a struct in_addr address which is also network byte order. Add prototypes of prefixlen2mask() and mask2prefixlen() to ospfd.h as it is used or will be used at different places. OK norby@
2005-03-23remove now osolete comment, from a mail exchange withHenning Brauer
Alexander von Gernler <grunk@pestilenz.org>
2005-03-23grow receive buffer on the routing socket, from bgpdHenning Brauer
2005-03-23explicitely initialize opt, from bgpdHenning Brauer
2005-03-23ssize_t -> size_t, from ntpd, there from Alexander von GernlerHenning Brauer
2005-03-23wpos in struct buf_read and datalen in imsg_get should be size_t and notHenning Brauer
ssize_t From: Alexander von Gernler <grunk@pestilenz.org>
2005-03-22Remove bool cruft.Esben Norby
ok claudio@