Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-07-20 | On config reload errors free the list of ribs so that following reloads | Claudio Jeker | |
don't fail because of redefinition conflicts. This problem was reported by some people. | |||
2009-07-20 | Flag added RIBs as F_RIB_NOFIB | F_RIB_NOEVALUATE in the no-eval case even | Claudio Jeker | |
though F_RIB_NOEVALUATE implicitly includes F_RIB_NOFIB. | |||
2009-07-19 | fix fwrite return code checking. | Jacek Masiulaniec | |
bug exposed by recent change to fwrite, and reported by oga. ok gilles | |||
2009-07-19 | missing va_end in pppd; ok millert@ | Martynas Venckus | |
2009-07-17 | Correcly mark as 'R' ripd(8) inserted routes even | Michele Marchetto | |
if they have been modified by ldpd(8). Spotted by Rolf Sommerhalder | |||
2009-07-16 | ServerTokens default is ProductOnly; | Jason McIntyre | |
from Tim van der Molen ok henning | |||
2009-07-13 | Get rid of the multipath code, as it is not needed. | Michele Marchetto | |
ok claudio@ laurent@ | |||
2009-07-13 | If there are no downstream members for a particular prefix, send a prune | Michele Marchetto | |
upstream. ok claudio@ | |||
2009-07-12 | don't cast lvalue, no binary change. | Jonathan Gray | |
2009-07-12 | Remove a semicolon at the end of an if statement so the | Jonathan Gray | |
test if a buffer isn't NULL before freeing has effect. This was harmless as it is in a failure case and free(NULL) is valid in userland. | |||
2009-07-11 | synchronize the synopsis and usage of mopa.out(1); mopchk(1) can handle | Igor Sobrado | |
more than one filename at a time; add a description for -3 and -4 in mopd(8), and document -v; remove a duplicate flag in mopprobe(1); use a better style for synopses; sort flags and arguments. written with help by jmc@ ok jmc@ | |||
2009-07-11 | fix the RTM_VERSION check in the evil loop to really get | Rainer Giedat | |
all the interfaces ok sthen@ | |||
2009-07-10 | Advance the pointer past the message on the routing socket where | Stuart Henderson | |
ifm_version is not RTM_VERSION - the for() loop doesn't do this itself. Fixes endless loop introduced by preceding commit, noticed by marc@. ok claudio. | |||
2009-07-08 | Detect nexthop change. | Michele Marchetto | |
React installing the label associated with the new nexthop in the kernel routing table. ok claudio@ | |||
2009-07-08 | Fix memory leak in sarch filter parsing code. | Bret Lambert | |
ok pyr@ | |||
2009-07-07 | Forgot to commit this while adding all the RTM_VERSION checks. Reminded by | Claudio Jeker | |
sthen@ who also tested it. OK henning@ sthen@ | |||
2009-07-07 | Make ripd(8) aware of MPLS routes. | Michele Marchetto | |
ok claudio@ | |||
2009-07-06 | default waittime is 5, not 3; | Jason McIntyre | |
from Paul Stoeber | |||
2009-07-03 | allow pkg_mklocatedb -p to work again; from espie@ | Christian Weisgerber | |
2009-07-02 | Rewrite the sysctl handlers to use libc functions (getifaddrs and | Claudio Jeker | |
if_indextoname) instead of looking at the sysctl data directly. This makes the code a lot simpler and actually work. Tested by many (todd@, sthen@, and a few people on tech@). OK sthen@, deraadt@ | |||
2009-06-29 | Protect the other rde_send_kroute() with a F_RIB_NOFIB check. | Claudio Jeker | |
2009-06-29 | Doh! Fix logic botch that disconnected the FIB from the Loc-RIB instead of | Claudio Jeker | |
making sure that other RIBs are not injecting routes into the FIB. | |||
2009-06-29 | Unfuck mrt table dumps and plug a memory leak while there. | Claudio Jeker | |
2009-06-29 | since upper-bound is not a power of two here, use arc4random_uniform | Martynas Venckus | |
instead, to avoid modulo bias. ok jacekm@, gilles@ | |||
2009-06-28 | Fix small regression introduced with symlinks handling. | Antoine Jacoutot | |
spotted by jmc@ | |||
2009-06-28 | Remove useless blank space in output. | Antoine Jacoutot | |
2009-06-28 | Teach sysmerge to deal with links (found the hard way when I realised I | Antoine Jacoutot | |
missed some very much needed symlinks under /etc/fonts/conf.d/). The behaviour is the following, if a link does not exist: * in '-a' mode, it is created automatically * in normal mode, sysmerge will ask what you want to do If one wants to use '-a' mode while still being in control of what links are created, sysmerge.ignore can be used. "sounds good to" phessler@, ok sthen@ | |||
2009-06-26 | use standard safe C | Theo de Raadt | |
2009-06-26 | locally define nitems() macro, #ifndef'd. | Okan Demirmen | |
"please commit" gilles@ jacekm@ | |||
2009-06-26 | There is no need to log routing socket version mismatches. | Claudio Jeker | |
OK henning@, sthen@ | |||
2009-06-26 | More consistent RTM_VERSION checking. A few missing one was in the wrong | Claudio Jeker | |
spot. OK henning@, sthen@ | |||
2009-06-26 | Another daemon needing RTM_VERSION checks. Why rwhod is doing all the hard | Claudio Jeker | |
work instead of using getifaddrs() and working on this much simpler structure is beyond my immagination. Looked over by henning@ and sthen@ | |||
2009-06-26 | If two or more children exit before hotplugd is scheduled only one SIGCHLD | Kurt Miller | |
will be delivered, so deal with this case in the SIGCHLD handler. Also retry if waitpid() fails with EINTR. looks good deraadt@ millert@ | |||
2009-06-25 | sasyncd isn't interested in messages on the routing socket other than | Stuart Henderson | |
RTM_IFINFO to monitor the state of carp(4) interfaces; programme the filter on the socket accordingly so it doesn't have to handle other message types. ok henning@ | |||
2009-06-25 | fix the function name in log_warn() text, it was borrowed from some | Stuart Henderson | |
previous test code of mine. | |||
2009-06-25 | Another kroute.c needing RTM_VERSION checks. Looked over by sthen@ and henning@ | Claudio Jeker | |
2009-06-25 | At least try to check for the RTM_VERSION here even so part of this code | Claudio Jeker | |
escaped from a horror story and robs you're sanity. This needs major cleanup. OK sthen@, OK henning@ | |||
2009-06-25 | Another kroute.c code with missing RTM_VERSION checks. | Claudio Jeker | |
OK sthen@, henning@ | |||
2009-06-25 | Add missing RTM_VERSION checks. Bad me, no cockies. | Claudio Jeker | |
Tested and OK sthen@, OK henning@ | |||
2009-06-25 | Another copy another missing RTM_VERSION check. | Claudio Jeker | |
Tested and OK sthen@, OK henning@ | |||
2009-06-25 | Another copy of the strange while loop seen in route(8). Add missing | Claudio Jeker | |
RTM_VERSION check. Tested and OK sthen@, OK henning@ | |||
2009-06-25 | Same code as in route(8) same RTM_VERSION check missing. | Claudio Jeker | |
Tested and OK sthen@, OK henning@ | |||
2009-06-25 | typo; | Jason McIntyre | |
2009-06-25 | incorrect .PATH setting, discovered with nicm | Theo de Raadt | |
2009-06-25 | Teach ifstated to use ROUTE_FILTER. Requested by claudio@. | Stuart Henderson | |
ok claudio@ henning@ | |||
2009-06-25 | pkgpath are only used for updates, so matching should only be pkgpath vs | Marc Espie | |
default info, and not maximal matching, otherwise too many things will match. problem noticed by marco@ With input from sthen@ and tests from kili@ | |||
2009-06-24 | recvmsg ENOENT noncritical too | Henning Brauer | |
2009-06-24 | Lower stack size before mlockall(). With login.conf defaults for i386, | Stuart Henderson | |
this avoids wiring (8MB-256KB). From AerieBSD. ok deraadt@ | |||
2009-06-22 | Log a warning when "enforce remote-as" is triggered. ok claudio@ | Stuart Henderson | |
2009-06-21 | Support mouses with lots of buttons. Also, fix a crash when pressing | Jacek Masiulaniec | |
a button that's outside of the hardcoded range; miod@ ok |