Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-05-29 | When ntpd backs off polling due to a negative delay, tell the user how long | Chris Kuethe | |
it will wait until the next poll. ok henning@ | |||
2006-05-29 | No need for return; at end of functions returning void. | Moritz Jodeit | |
2006-05-29 | better wording for the "weight" section; | Jason McIntyre | |
2006-05-29 | Be more careful to not touch memory outside the | Moritz Jodeit | |
captured packet. Fixes some more crashes. ok canacar@ deraadt@ | |||
2006-05-29 | repair some broken indentation in an example; ok jmc@ | Kevin Steves | |
2006-05-29 | document the optional "weight" keyword, and a little cleanup; | Jason McIntyre | |
from henning and myself | |||
2006-05-29 | ANSI and whitespace. No binary change. | Moritz Jodeit | |
2006-05-29 | Check that struct p8022Hdr was completely captured, | Moritz Jodeit | |
before accessing it. With some cleanup from canacar@ ok canacar@ | |||
2006-05-29 | The end pointer to fn_print() could possibly point behind the captured | Moritz Jodeit | |
packet. So make sure, it uses "snapend" in that case. ok canacar@ | |||
2006-05-29 | Add proper bounds checks for the CDP and SSDP protocols by | Moritz Jodeit | |
grouping all LLCSAP_SNAP handling in one block. Also make sure, that enough of "struct llc" was captured, before accessing it. ok canacar@ | |||
2006-05-29 | Delay lsa database deletes for MIN_LS_INTERVAL seconds so that flapping | Claudio Jeker | |
routes do not cause a update storm. OK norby@ | |||
2006-05-29 | Remove useless debug message that gets triggered all the time in big networks. | Esben Norby | |
ok claudio@ | |||
2006-05-29 | when we cannot open /dev/hotplug, donn't bail, just work without | Henning Brauer | |
with ckuethe | |||
2006-05-28 | Even better nexthop delete behaviour. Do not delete nexthop if they are used | Claudio Jeker | |
by filter sets or if the nexthop is currently looked up. With this the "nexthop_update: non-existent nexthop" warning should be history. OK henning@ | |||
2006-05-28 | Correct more bounds checks which can lead to crashes. | Moritz Jodeit | |
ok canacar@ deraadt@ | |||
2006-05-28 | Preload and pin nexthop used in filtersets so the are validiated when used. | Claudio Jeker | |
This will fix problems with set nexthop on outgoing filters. Found by gluk@ OK henning@ | |||
2006-05-28 | Check that a complete struct llc was captured (not only 3 bytes), | Moritz Jodeit | |
because it is accessed later on. ok deraadt@ | |||
2006-05-28 | allow for weight to be added to sensors or servers, so that one can | Henning Brauer | |
weight timedelta sensors higher than ntp peers, for example ok deraadt mbalmer | |||
2006-05-28 | get clock src id from the timedelta sensor desc. | Henning Brauer | |
unfortunately I still don't have any hardware to test this ;( | |||
2006-05-28 | if sysctl gives ENOENT the sensor is gone and we remove it | Henning Brauer | |
2006-05-28 | let sensor_query handle removals itself | Henning Brauer | |
2006-05-28 | Device id was removed from hotplug events so cope with this. | Michael Knudsen | |
2006-05-28 | sensor_byid not needed any more | Henning Brauer | |
2006-05-28 | hotplug devid will go away in a minute, so don't use it here any longer | Henning Brauer | |
2006-05-28 | do not bother with rmeoval events, we remove sensors whoch vanished or | Henning Brauer | |
are not a timedelta sensor any more on query on the fly anyway | |||
2006-05-28 | small grammar improvement; | Jason McIntyre | |
2006-05-28 | DV_SENSORS is no more, plug workaround for the time to the real solution | Henning Brauer | |
2006-05-28 | make use of the new hotplug events for sensors showing up or vanishing | Henning Brauer | |
2006-05-28 | Include device id in hotplug event logging. id is passed as new | Michael Knudsen | |
script parameter so only scripts that are picky about arg count needs updating. ok henning. | |||
2006-05-27 | add sensor_byid(), return sensor by its id | Henning Brauer | |
2006-05-27 | stop passing the config around all time, just store one copy | Henning Brauer | |
2006-05-27 | fix potential crash when using -v. ok canacar@ | Moritz Jodeit | |
2006-05-27 | factor out sensor_probe from sensor_scan so we can probe a sensors when | Henning Brauer | |
we know its idea without scanning all again | |||
2006-05-27 | make ntpd listen on the hotplug socket and decode yadda yadda, because | Henning Brauer | |
new sensors showing up will be announced that way when slacking ml comes back from food | |||
2006-05-27 | Wait for a response from bgpd on reloads. | Claudio Jeker | |
2006-05-27 | Pass a IMSG_CTL_RESULT messgae back to bgpctl on reloads to indicate if | Claudio Jeker | |
the reload was successful or not. OK henning@ | |||
2006-05-27 | grok modp3072, ok moritz@ | Hans-Joerg Hoexer | |
2006-05-27 | sync to bgpd: use ibuf->pid in imsg_create if pid == 0, claudio ok | Henning Brauer | |
2006-05-27 | if the pid given to imsg_create is 0, use the pid sored in the ibuf (which | Henning Brauer | |
is the current process' pid). fixes blocking with concurrent bgpctl instances... oups. surprised we missed that earlier, the pid stuff was only ever added for that purposed, but we missed to set the pid. gigantic oups. with & ok claudio | |||
2006-05-27 | Don't exit just because an interface has no subnet configured in | Kenneth R Westerback | |
dhcpd.conf. Just don't listen on that interface. Make warning messages textually consistant. tested & ok beck@ | |||
2006-05-27 | Revert last commit. Having ifindex of 0 is an error and needs to be reported. | Claudio Jeker | |
Having routes with incorrect ifindex makes it impossible to correctly validate routes. -current ospfd needs a -current kernel. | |||
2006-05-27 | scan for new timedelta sensors every five minutes for now, ok deraadt | Henning Brauer | |
2006-05-27 | ntpd does timedelta sensors now too | Henning Brauer | |
2006-05-27 | document timedelat sensors. ok deraadt | Henning Brauer | |
2006-05-27 | config file bits for timedelta sensors, so one can specify which devices | Henning Brauer | |
to use. "sensors *" just uses all. untested due to lack of hardware. hacked on the road somewhere between vancouver and calgary | |||
2006-05-27 | Cleanup with lint. Make the poll fd indexes unsigned and because of that | Claudio Jeker | |
control_accept should also return a unsigned int. Remove old prototype. | |||
2006-05-27 | Unfuck community delete. The if () statement to match communities was FUBAR | Claudio Jeker | |
instead reverse logic and use the same if statement as in the match function. Issue found and debugged by Leen Besselink. Thanks. | |||
2006-05-27 | Move prinitng of communities into own function so that special communities | Claudio Jeker | |
like "*" or "neighbor-as" is printed correctly. Issue noticed by Leen Besselink. | |||
2006-05-27 | When an interface is ignored because it has no IP address, say so. | Kenneth R Westerback | |
Don't just say 'not found". And always complain, not just when specific interfaces were requested. requested by and ok uwe@ | |||
2006-05-26 | make pkg_add exit gracefully if it cannot read from a file handle, which | Steven Mestdagh | |
happens when the ssh connection could not be established. ok espie@ |