summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2004-07-03Switch mrt dumping to fd passing. This gives some speed up when extensiveClaudio Jeker
dumping is done. Acctually mrt dumps were broken because of the fd passing. The nice side effect is a much cleaner code, especially in the parent process. OK henning@
2004-07-03support @hostname:port syntax in syslog.conf, prompted by msf@ at c2k4;Damien Miller
ok henning@ anil@
2004-07-02add `cast' and `cast-cbc' to the list of supported args to speed;Jason McIntyre
also add `dsa', which is shorthand for all the dsa tests;
2004-07-02reorder for openssl speed;Jason McIntyre
2004-07-01does not need ialloc.c; millert@ okMichael Shalayeff
2004-07-01setmode(3) returns void *, not mode_t *. ok millert@Otto Moerbeek
2004-06-30Unbreak unix domain sockets and properly detect and report truncationOtto Moerbeek
of the socket path name. Based on a diff from Juan Vera, with changes by me and millert@. ok millert@ djm@; man page ok jmc@
2004-06-29Fix MS chap; our libc md4 routines take the number of bytes, not bits,Todd C. Miller
as the count. Found by Mike Tekiela.
2004-06-29little extra paranoia, ignore attempts to enter routes with a nexthopHenning Brauer
within 127/8. inspired by a very bad example for bogon filters at the cymru site, claudio ok
2004-06-29When no listener is specified, create a listener on every IP. ProblemAlexander Guy
reported by Peter Hessler. ok henning@
2004-06-27add reference to nsclpcsio(4) to SEE ALSO;Jason McIntyre
prodded by Alexey E. Suslikov;
2004-06-27cast to quell a warning, ok pedro@Jolan Luff
2004-06-26Fix strict aligenment issues in ppp lcp and ipcp handling.Claudio Jeker
More cleanup is needed. OK henning@ canacar@
2004-06-26- sort optionsJason McIntyre
- add -46 to usage() and sync w/ SYNOPSIS
2004-06-26should have updated all of these first - the same wordo in them all.Jason McIntyre
also, section order for usermgmt.conf.5 was wrong.
2004-06-26wordo;Jason McIntyre
2004-06-25provide mask2prefixlen6() and prefixlen2mask6()Henning Brauer
2004-06-25support new syslogd control protocol and add new -o option to detect memoryDamien Miller
buffer overflow; idea & ok markus@ NB if you are using memory buffered logging make sure you update both syslogd and syslogc _and_ restart syslogd because the protocol has changed
2004-06-25extend memory buffer control protocol to support transmission of flags,Damien Miller
starting with one to indicate whether the memory ringbuffers have overflowed; idea & ok markus@ NB if you are using memory buffered logging make sure you update both syslogd and syslogc _and_ restart syslogd because the protocol has changed
2004-06-25after writing and deleting the kroute6 tree related functions for at least 5Henning Brauer
times I am getting this in now sow I don't do it a 7th time...
2004-06-24First step at multiprotocol support, only partially done.Claudio Jeker
OK henning@
2004-06-24Make community set strict aligenment save, remove unneeded ENSUREsClaudio Jeker
OK henning@ djm@
2004-06-23kill that stupid AS path loop whining, that is normalHenning Brauer
2004-06-23-tttt prints time between packets; ok deraadtMarkus Friedl
2004-06-23pretty print; ok ho@Markus Friedl
2004-06-23Support rfc 3765 which adds a new well known community NOPEER. OK henning@Claudio Jeker
2004-06-22Cleanup. jajaja henning@Claudio Jeker
2004-06-22Recent glue_strings change reversed a few checks; fix up conditionalsAnil Madhavapeddy
to check for overflow as others do by convention. Noticed by Andreas Kahari <ak+openbsd at freeshell.org>, millert@ ok
2004-06-22Make the RDE IPv6 ready missing is the message handling. The internalClaudio Jeker
prefix tree changed form a hash table to a per AF RB tree. OK henning@ some ideas are from Brent Graveland.
2004-06-22it is meaningless to try decoding non-first fragment.Jun-ichiro itojun Hagino
2004-06-22Precedence and type fix; ok henning@Alexander Guy
2004-06-22Precedence fix; ok henning@Alexander Guy
2004-06-22missing bzero in a function for this strange other address familyHenning Brauer
2004-06-22introduce kroute6, which will be used to build a seperate v6 tableHenning Brauer
(smashing them into the v4 table would raise the memory requirements far too much), and make kroute_nexthop (where we are not under such memory pressure, you don't have a hundred thousand nexthops) v4/v6. change existing callers to use the v4 part, claudio ok
2004-06-22connect ntpdHenning Brauer
2004-06-22Templates with unknown AS where always configured as ebgp peers even ifClaudio Jeker
they were ibgp ones. OK henning@
2004-06-22In draft-ietf-ipsec-nat-t-ike-01,02,03, NAT-D is payload 130. Rewrite a bitHakan Olsson
to understand payloads in the private range. Also match a few "well-known" vendor-IDs. markus@ "looks ok".
2004-06-22Recognize NAT-T Keepalive packets. markus@ ok.Hakan Olsson
2004-06-22so we call realloc() on our pollfd array and the peer_l one when they shrunkHenning Brauer
to save memory... yet, that realloc call can fail with ENOMEM ;) don't shrink when (needed + reserve < allocated), but (needed + 2 * reserve < allocated) the longer term goal is of course to not fail at all when a shrink-realloc fails... but that's for later
2004-06-22use snprintf(3) instead of home-grown glue_strings() functionAnil Madhavapeddy
millert@ ok
2004-06-22handle interface removals in the poll loop. ok henning@Can Erkin Acar
2004-06-21support for old stuff in pkg_info/pkg_delete, e.g., @srcMarc Espie
prompted by miod@, okay miod@ millert@.
2004-06-21dont compare int with NULL, compare to 0 instead, otto@ okAnil Madhavapeddy
2004-06-21Implement pkg_add -I for real; ok espie@Miod Vallat
2004-06-20IPv4/v6 support for standalone mode. brad tested and ok'edJun-ichiro itojun Hagino
2004-06-20skip over multipath routesHenning Brauer
maybe one day we come up with a good reason for bgpd to use multipath routes, but for now it doesn't make any sense - bgpd inserts the "best" path fr a prefix, there's no point in inserting more than one. one is always the "best" one by bgp metrics. with claudio
2004-06-20mention new -l option, some nitpicksPedro Martelletto
mdoc tutoring and ok jfb@
2004-06-20at least somewhat consistently name the TAILQ_ENTRYs... this confused meHenning Brauer
more than once
2004-06-20allow for receival of up to 16 fds at once; after discussion with theoHenning Brauer
2004-06-20make vnconfig use the new VNDIOCGET ioctl to retrieve information aboutPedro Martelletto
the status of vnode disks, ok millert@