Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-10-05 | stylistic changes in the relay/relay_config structure. | Reyk Floeter | |
2007-10-05 | cast to an int | Reyk Floeter | |
2007-10-05 | using an enum in the imsg_hdr is gross, use a fixed u_int16_t instead | Reyk Floeter | |
2007-10-05 | unbreak non-SSL relays by calling the ssl context init only if the SSL | Reyk Floeter | |
flag is present... | |||
2007-10-04 | Handle CARP for IPv6. Reported and tested by todd@ | Can Erkin Acar | |
ok todd@, henning@ | |||
2007-10-04 | when inserting blackhole or reject routes, set the gateway address to | Henning Brauer | |
127.0.0.1 / ::1 unconditioally, since RTF_BLACKHOLE/REJECT are not actually checked in the forwarding path and the gw doesn't matter otherwise. makes them work.. found teh hard way by me. claudio ok | |||
2007-10-02 | stop messing with lgetc to please hoststated's check/expect. | Pierre-Yves Ritschard | |
instead move some of the logic in yylex and do hoststated specific translations into hoststated.c ok gilles@ | |||
2007-10-02 | Use kinfo_proc2 instead of kinfo_proc. | Mark Kettenis | |
ok art@ | |||
2007-10-02 | clean up merged code. | Pierre-Yves Ritschard | |
2007-10-01 | Add NUMBER to hoststated's lexer, very similar to what has gone in | Pierre-Yves Ritschard | |
in the other daemons recently. Prompted and based on work by deraadt@ proofread and ok gilles@ | |||
2007-10-01 | Sync .nd with other parts of hoststated, prompted by jmc@ | Pierre-Yves Ritschard | |
2007-10-01 | kill some remaining debug that snuk in. | Pierre-Yves Ritschard | |
2007-10-01 | keep lines < 80. | Pierre-Yves Ritschard | |
2007-10-01 | fix alot of whitespace problems... | Esben Norby | |
2007-09-30 | When printing the config always include the interface IP address. | Claudio Jeker | |
Without this multiple networks on one interface could not be distinguished. OK norby@ | |||
2007-09-29 | KNF. | Pierre-Yves Ritschard | |
2007-09-28 | KNF | Pierre-Yves Ritschard | |
2007-09-28 | spaces | Claudio Jeker | |
2007-09-28 | Better description of the daemon. | Pierre-Yves Ritschard | |
Initially prompted by deraadt@, with much much help from jmc@ (as always). | |||
2007-09-28 | nit | Marc Espie | |
from qgiovanni@gmail.com | |||
2007-09-28 | Correct my mail address. | Pierre-Yves Ritschard | |
2007-09-28 | Change the ssl_privsep code to work on char buffers. | Pierre-Yves Ritschard | |
The fd based code introduced weirdness since all children were accessing the same fd at once. This will also greatly facilitate reloading, no fd-passing will be involved between the parent and relay children. While there, cleanup the code diverting from the original ssl_rsa.c code a bit more. Weird behavior discovery by pascoe@. | |||
2007-09-28 | Cleanup some #includes plus some minor other cleanup. OK norby@ | Claudio Jeker | |
2007-09-28 | "require to +inf." is not a good verb pattern, so reword; | Jason McIntyre | |
2007-09-28 | Add missing "s" to https check description. | Christopher Pascoe | |
ok pyr@ | |||
2007-09-27 | Move SSL context creation after privileges are dropped. | Pierre-Yves Ritschard | |
This puts the ssl_privsep code to use. One more step towards graceful L7 reload. | |||
2007-09-27 | Simplify ssl_privsep.c, since it won't need to remain synced with the | Pierre-Yves Ritschard | |
equivalent openssl functions. | |||
2007-09-27 | Do not clear the changed flag to early, which prevented a table | Pierre-Yves Ritschard | |
from being used by several services. ``looks fine'' reyk@ | |||
2007-09-25 | Last missing piece in the equal cost multipath support for ospfd. | Claudio Jeker | |
Send all possible nexthops to the parent process and correctly sync the RIB, FIB and kernel routing table. Based on initial work by pyr@. OK pyr@ norby@ PS: don't forget that you need to enable multipath support via a sysctl | |||
2007-09-25 | handle empty strings returned by fgets | Charles Longeau | |
ok ray@ | |||
2007-09-25 | Introduce two new functions to be able to load certificates while | Pierre-Yves Ritschard | |
already chrooted and with privileges dropped. This is the very first step in being able to reload a layer 7 configuration. not ok reyk who's away but should be glad to see this in. | |||
2007-09-22 | avoid case ranges; ok millert@ | Otto Moerbeek | |
2007-09-21 | typo: print hexdump of packet, instead of pcap header; ok canacar, henning | Markus Friedl | |
2007-09-20 | obey -F installed | Marc Espie | |
noticed by kurt@, tested by him too. | |||
2007-09-18 | use C99 explicit struct initializer instead of deprecated gcc 2.5 | Otto Moerbeek | |
style. ok miod@ millert@ | |||
2007-09-18 | Correctly track the E-bit of router LSA on config reloads. If redistribution | Claudio Jeker | |
is turned on or off the E-bit needs to be toggled accordingly else the AS-external LSA are ignored by the other OSPF routers. OK norby@ | |||
2007-09-16 | log_fmt_peer() does not use a static buffer so it is necessary to free the | Claudio Jeker | |
string that it returned later. rde_update_log() did not do that. Memory leak found and diff provided by Mike Belopuhov. | |||
2007-09-16 | Change the way nexthops are calculated on the root level. Instead of looking | Claudio Jeker | |
from the target back and trying to figure the nexthop out, the link is searched in the interface list and the info from the matiching interface is used. This should solve the nexthop issues with setups having multiple point-to-point links between two routers as reported on misc@ some time ago. tested and OK norby@ | |||
2007-09-15 | [fF]uther -> [fF]urther in comments and man page. First one spotted on | Kenneth R Westerback | |
tech@ by Jung. | |||
2007-09-14 | remove some warnings: | Charles Longeau | |
unused variable `variable' `variable' might be used uninitialized in this function ok gilles@ ray@ | |||
2007-09-14 | use a setup function for options, cleaner; ok cloder | Theo de Raadt | |
2007-09-14 | Correctly assign a default weight of 1 to sensors and servers. | Chris Kuethe | |
ok beck | |||
2007-09-13 | Move parser to use NUMBER as all other parse.y do know. A bit tricky because | Claudio Jeker | |
all the relative metrics need some special handling. OK henning@ deraadt@ | |||
2007-09-13 | add -n to usage(); | Jason McIntyre | |
2007-09-13 | Provide the -n switch like in the other imsg daemons for testing | Pierre-Yves Ritschard | |
the configuration file. "yes please, ok" henning@ | |||
2007-09-13 | one more missed change; | Jason McIntyre | |
2007-09-13 | Small style tweak, from jmc and Maurice Janssen | Chris Kuethe | |
2007-09-12 | Add a knob to compensate for a refclock that is early or late. Based on a | Chris Kuethe | |
diff from Maurice Janssen. Manpage help from jmc and Maurice, other nits from deraadt and otto. ok deraadt, otto | |||
2007-09-12 | default weight has to remain 1; seen by Maurice Janssen | Theo de Raadt | |
2007-09-12 | Another parser.y that switches to parse numbers directly in the lexer. | Claudio Jeker | |
Most complex part was "redistribute 10/8" which need special handling. With and OK deraadt@, OK norby@ |