summaryrefslogtreecommitdiff
path: root/sbin
AgeCommit message (Collapse)Author
1999-06-11<netinets/ip_proxy.h> -> <netinet/ip_proxy.h>; ryker@ugrad.cs.ualberta.caAaron Campbell
1999-06-10Handle PAGER in a manner consistent with the Single Unix Specification:Paul Janzen
that is, use PAGER rather than "more" if it is defined and non-null, not just if it is defined.
1999-06-08Some large partition fixesNiklas Hallqvist
1999-06-06use inet_aton() instead of inet_addr()Theo de Raadt
1999-06-06mention the `manual' command; mcsmart@engin.umich.eduAaron Campbell
1999-06-06typo; mcsmart@engin.umich.eduAaron Campbell
1999-06-05Merge with EOM 1.41, RCSIdsNiklas Hallqvist
1999-06-05Merge with EOM 1.89Niklas Hallqvist
author: ho Remove early variable initialization.
1999-06-05Use the Listen-on address as local address if Local-addressNiklas Hallqvist
not given, but Listen-on is.
1999-06-05fix another inet_aton()Theo de Raadt
1999-06-05Remove bad examples of stuff we do not yet support in this version anyhowNiklas Hallqvist
1999-06-05Merge with EOM 1.15Niklas Hallqvist
author: niklas More error checking of certs
1999-06-05Merge with EOM 1.14Niklas Hallqvist
author: niklas Add some error checking
1999-06-05Merge with EOM 1.27Niklas Hallqvist
author: niklas style author: niklas strdup error checking
1999-06-05use inet_aton()Theo de Raadt
1999-06-05capitalize the acronym IDAaron Campbell
1999-06-05more .Os cleansingAaron Campbell
1999-06-04start to remove non-escaped trailing whitespace, it can confuse troff; pjanzen@Aaron Campbell
1999-06-03check for interface names before hostnamesTheo de Raadt
1999-06-02snprintfTheo de Raadt
1999-06-02Merge with EOM 1.16Niklas Hallqvist
author: niklas As PF_KEY per the specs is a best-effort service, expect messages to get lost. That means both replies in PF_KEY "RPCs" and expirations, the latter we solve with extra paranoia and sets timeouts in isakmpd too.
1999-06-02Merge with EOM 1.23Niklas Hallqvist
author: niklas Doc fixes from OpenBSD author: niklas Some extra error checking, documentation and style wrt connections author: niklas Initial text for Passive-Connections author: niklas Doc fix from OpenBSD
1999-06-02Merge with EOM 1.112Niklas Hallqvist
author: niklas Some restructuring of ID checks, but still no coupling to names.
1999-06-02exchange.c: Merge with EOM 1.106Niklas Hallqvist
timer.c: Merge with EOM 1.12 author: ho Logging nitpicks
1999-06-02Merge with EOM 1.44Niklas Hallqvist
author: niklas Double dots squashed author: ho Updated. Minor typos.
1999-06-02Merge with EOM 1.4Niklas Hallqvist
author: ho Expand the passive connection mechanism. author: niklas Some more #if 0 stuff for passive connections author: ho Add connections_report and connection_reinit
1999-06-02Merge with EOM 1.3Niklas Hallqvist
author: niklas Initial stab at Oakley group 5, still an XXX though.
1999-06-02Merge with EOM 1.39Niklas Hallqvist
author: niklas Style nits author: ho Perhaps look into IPCOMP soon?
1999-06-02Merge with EOM 1.14Niklas Hallqvist
author: ho We do not require flags on implicit passive connections. author: ho Fix bug in matching IDs. Cleanup debugging. author: ho bug fix of decode_id function. author: ho Temp. add some more debugging around setup of passive connection author: ho Add more debugging output and correct connection_report author: niklas Some extra error checking, documentation and style wrt connections author: ho More passive connection support author: niklas Small bugfixes and style nits author: ho Expand the passive connection mechanism. author: niklas Some more #if 0 stuff for passive connections author: ho Commit to embryonic code for passive connections author: niklas Some type pedantery. Comment style nits. author: ho Add connections_report and connection_reinit
1999-06-02Merge with EOM 1.52Niklas Hallqvist
author: ho New flag
1999-06-02Merge with EOM 1.24Niklas Hallqvist
author: niklas Style nits author: ho Describe debug logging classes in some detail.
1999-06-02Merge with EOM 1.88Niklas Hallqvist
author: niklas Some extra error checking, documentation and style wrt connections author: niklas Some more #if 0 stuff for passive connections author: niklas Error handling looked over. Some restructuring of ID checks, but still no coupling to names.
1999-06-02Merge with EOM 1.19Niklas Hallqvist
author: niklas Oakley group 5 is of 102 bit ops strength author: niklas Initial stab at Oakley group 5, still an XXX though.
1999-06-02Merge with EOM 1.33Niklas Hallqvist
author: ho Add connection_report
1999-06-02Merge with EOM 1.95Niklas Hallqvist
author: niklas Some extra error checking, documentation and style wrt connections author: ho New flag author: niklas SA expiration randomization is really only good on the soft timeout, early hard expires may break more if we have a situation where our peer only wants to act as initiator, and trusts the negotiated lifetime.
1999-06-02Merge with EOM 1.33Niklas Hallqvist
author: ho Add missing #include author: ho Add connection_reinit to SIGHUP handler. Add comments.
1999-05-31clarify "secure" flag in /etc/ttysTodd C. Miller
1999-05-31New struct statfs with mount options. NOTE: this replaces statfs(2),Todd C. Miller
fstatfs(2), and getfsstat(2) so you will need to build a new kernel before doing a "make build" or you will get "unimplemented syscall" errors. The new struct statfs has the following featuires: o Has a u_int32_t flags field--now softdep can have a real flag. o Uses u_int32_t instead of longs (nicer on the alpha). Note: the man page used to lie about setting invalid/unused fields to -1. SunOS does that but our code never has. o Gets rid of f_type completely. It hasn't been used since NetBSD 0.9 and having it there but always 0 is confusing. It is conceivable that this may cause some old code to not compile but that is better than silently breaking. o Adds a mount_info union that contains the FSTYPE_args struct. This means that "mount" can now tell you all the options a filesystem was mounted with. This is especially nice for NFS. Other changes: o The linux statfs emulation didn't convert between BSD fs names and linux f_type numbers. Now it does, since the BSD f_type number is useless to linux apps (and has been removed anyway) o FreeBSD's struct statfs is different from our (both old and new) and thus needs conversion. Previously, the OpenBSD syscalls were used without any real translation. o mount(8) will now show extra info when invoked with no arguments. However, to see *everything* you need to use the -v (verbose) flag.
1999-05-31Use connection-oriented transport (ie: TCP) when possible. This makesTodd C. Miller
the default trasport for NFSV3 be TCP like most other OS's.
1999-05-30Output style nit. From ho@Tobias Weingartner
1999-05-29remove Xr to mkfs(8), since it is long goneAaron Campbell
1999-05-28more .El madnessAaron Campbell
1999-05-26Xr st(4); from NetBSDAaron Campbell
1999-05-24bye-bye, swapctl does the same thing.Tobias Weingartner
1999-05-23don't build swapon since swapctl gets linked to swaponTodd C. Miller
1999-05-23getopt(3) returns -1, not EOFAaron Campbell
1999-05-23remove argument from .Os macros so value in /usr/share/tmac/mdoc/doc-commonAaron Campbell
is used instead; kwesterback@home.com
1999-05-22Add swapctlTobias Weingartner
1999-05-22Initial import of swapctl(8).Tobias Weingartner
1999-05-21typoMarc Espie