summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-10-26tidy up the .Nd for some usb devices;Jason McIntyre
2006-10-26fix fxp(4) so that it will reset the link when you change the speed... ThisBrad Smith
will fix a problem where you boot w/ the default of autoselect, but then set the speed to 100/full, the switch will keep the autoselect/100/full negotiation... This will continue to work till someone resets the switch or unplugs the cable resulting in the switch failing to autoneg and falling back to 100/half, causing a hard to track down duplex mismatch.. From nCircle Network Security, Inc. via FreeBSD Tested by ckuethe@, pedro@, brad@, craig at creative dot com dot au
2006-10-26no need to cause every reference to pf to be an Xr; on the otherJason McIntyre
hand, referencing `PF' is not so helpful either; mutated from a diff from okan demirmen;
2006-10-26syncTheo de Raadt
2006-10-26 * make sure we keep copies of everything we need toHenning Brauer
* remove SAs and flows later again, even if the * configuration info changed due to reload. * We need: SPIs, method, local_addr, remote_addr. * remote_addr cannot change, so no copy. with this, I have just migrated a session from tcp md5sig to ipsec esp ike, just with bgpctl reload (both sides) followed by bgpctl neighbor $foo clear (just one side)! claudio ok
2006-10-26various fixes from wiz@netbsdJason McIntyre
2006-10-26- sort optionsJason McIntyre
- sync usage()
2006-10-26- sort optionsJason McIntyre
- sync usage()
2006-10-26typos; from bret lambertJason McIntyre
2006-10-26storing the dynamically acquired SPIs for tcpmd5 inside the conf structHenning Brauer
is not such a good idea - it gets nulled on config reloads, and thus we fail to clear the old SAs when the session is restarted after a config reload occured. obvious solution: store the SPIs outside the config area. ok claudio
2006-10-26tweak;Jason McIntyre
2006-10-26tweaks; ok henningJason McIntyre
2006-10-26Force umask to 022 so we don't heritate 077 from root's crontab commandAntoine Jacoutot
(output logs are still umask 077) "i think this is right" deraadt@
2006-10-26eep! unbreak.Ryan Thomas McBride
2006-10-26Document hostid.Ryan Thomas McBride
pointed out by Pierre-Yves Ritschard.
2006-10-26syncTheo de Raadt
2006-10-26Driver for the AMD Geode LX series processor security block.Tom Cosgrove
Currently just uses the RNG; AES support to be added later. ok deraadt@
2006-10-26Move from a switch based baud rate selection to range checkingJonathan Gray
based selection as hardware is not limited to fixed rates. Suggested by deraadt
2006-10-26add moscom, reminded by deraadtJonathan Gray
2006-10-26syncTheo de Raadt
2006-10-26Driver for MosChip MCS7703 based USB Serial devices.Jonathan Gray
Support for hardware flow control not yet implemented.
2006-10-26regenJonathan Gray
2006-10-26MosChip serial & EthernetJonathan Gray
2006-10-26do the minimal initialization of the firmware so that ASF alwaysBrad Smith
works. From ambrisko@FreeBSD
2006-10-25Don't convert buffer/field output to integerJordan Hargrave
Caused problems with strings/index on some systems
2006-10-25added deref/index for integer typesJordan Hargrave
2006-10-25Remove some unneeded externs. OK canacar@Moritz Jodeit
2006-10-25Check len to be > 0 before accessing buf[len-1] and check if theMoritz Jodeit
last character in the string returned by fgets(3) is '\n' before blindly overwriting it. OK and input from xsa@
2006-10-25Resort some functions, tiny cleanup.Marcus Glocker
ok claudio@
2006-10-25allow pflogd to listen on alternate pflog interfacesHenning Brauer
"Berk D. Demir" <bdd@mindcast.org> sent a diff in private, and then it evolved quite a bit... ok djm canacar berk
2006-10-25Make sure we actually flush the I-TLB on UltraSPARC-III by doing it fromMark Kettenis
the primary context instead of the secondary context. ok miod@
2006-10-25strtonum, Pierre-Yves Ritschard <pyr@spootnik.org>Henning Brauer
2006-10-25geez, the anno 2004 bgpd debug shitz made it to ripd tooHenning Brauer
Pierre-Yves Ritschard <pyr@spootnik.org>
2006-10-25allow spamlogd to use an alternate pflog interfaceHenning Brauer
spamlogd was the #1 reason for me to implement the multiple pflog thing, so now you can finally have a nice seperation between logging and spamlogd tracking smtp connections joint work with djm, ok djm bob and kinda "Berk D. Demir" <bdd@mindcast.org>
2006-10-25syncTheo de Raadt
2006-10-25strtonum, Pierre-Yves Ritschard <pyr@spootnik.org>Henning Brauer
2006-10-25same old debug cruft from bgpd as killed in ospfd and dvrmpd - is it yetHenning Brauer
somewhere else?
2006-10-25strtonum, Pierre-Yves Ritschard <pyr@spootnik.org>Henning Brauer
2006-10-25remove unused debug crap, that years ago accidently hit the tree withHenning Brauer
bgpd (2004 :)), and spread ;(
2006-10-25use strtonum, Pierre-Yves Ritschard <pyr@spootnik.org>Henning Brauer
2006-10-25pr5274 fix localhost dos with oversized valuesTed Unangst
ok deraadt
2006-10-25make absolutely sure logif is 0 unless set specifically, even if log is 0.Henning Brauer
logif is to be considered invalid unless log is set, but we need this to please the optimizer...
2006-10-25teach the optimizer about logif, with & ok frantzenHenning Brauer
2006-10-25select() and poll() don't _FD_LOCK their file descriptors, so there's noKurt Miller
need to bail from _thread_kern_poll() when a file descriptor is in closing state. corrects segfault reported by ckuethe@
2006-10-25test logging to alternate pflog interfacesHenning Brauer
2006-10-25tag names may be longer now, and someone didn't update regress testsHenning Brauer
accordingly
2006-10-25Ooops, forgot to add radio mtap includes.Marcus Glocker
2006-10-25note that multiple instances can be created,Jason McIntyre
and adapt the example to show how... ok henning
2006-10-25Remove a parser debug functionality that was never used in ospfd.Claudio Jeker
From Pierre-Yves Ritschard
2006-10-25Use strtonum(3) instead of the hand made atoul. This solves an issue withClaudio Jeker
possible integer truncation because of the use of u_longs and u_int32_t in the code. Initial diff by Pierre-Yves Ritschard but slightly modified version commited.