summaryrefslogtreecommitdiff
path: root/sbin
AgeCommit message (Collapse)Author
2001-05-15do not permit emalloc/erealloc of 0 sized objectsTheo de Raadt
2001-05-15do the same as _ffsMichael Shalayeff
2001-05-15error out if failed to malloc memory for inode cache entry; deraadt@ okMichael Shalayeff
2001-05-15report on another calloc() failureTheo de Raadt
2001-05-15Split wi(4) into bus-dependent and bus-independent bits similar toTodd C. Miller
an(4) -- no real code changes at this point. Rename if_wavelan_ieee.h to if_wi_ieee.h while I'm at it and create an if_wivar.h similar to NetBSD. PCI adaptors exist that are not true PCMCIA controllers so wi(4) @ PCI is possible (though the code is not working yet ;-).
2001-05-14Ignore empty strings in kern.malloc.kmemstat.<foo>, add tty stats.Angelos D. Keromytis
2001-05-14Update.Angelos D. Keromytis
2001-05-14Xr bridgename.if and hostname.if in section 5, not 8; spotted by James ↵Jason Wright
Cronin <james@unfortu.net>
2001-05-12Better argument checking for kmemstats.Angelos D. Keromytis
2001-05-12size_t -> u_int32_t (mcmahill@mtl.mit.edu)Angelos D. Keromytis
2001-05-11use strlcpy instead of strncpy+a[len-1]='\0'Michael Shalayeff
2001-05-11use strlcpy instead of strncpy+a[len-1]='\0'Michael Shalayeff
2001-05-11use strlcpy instead of strncpy+a[len-1]='\0'Michael Shalayeff
2001-05-11MAP_FAILED, not 0Artur Grabowski
2001-05-11Put the flag options in a list. (ok deraadt@)Hakan Olsson
2001-05-11Print the new sysctls (nchstats, kmemstats, nselcoll, forkstat)Angelos D. Keromytis
2001-05-11Update with new sysctl'sAngelos D. Keromytis
2001-05-09correct signal handling for ping6 -f <nonexisting destination>.Jun-ichiro itojun Hagino
from hash@iij.ad.jp. sync with kame
2001-05-08add more display variables (for screen burner).Michael Shalayeff
implement boolean type for variables.
2001-05-07make bug fixed, remove work-aroundMarc Espie
2001-05-07temp work-around. Okay deraadt@Marc Espie
2001-05-07tunneldelete -> deletetunnelMarkus Friedl
2001-05-05pf_key_v2_set_spi now sets the Phase 1 IDs on the Phase 2 SAs;Angelos D. Keromytis
credentials to follow. Dynamic configuration entries are garbage-collected. Default-Phase-2-Suites entry in the [General] section may be used to specify Phase 2 default Suites (overriding the default 3DES-SHA-PFS).
2001-05-05Pass the Phase 1 SA to the set_spi routine, so the IDs (and eventuallyAngelos D. Keromytis
any credentials) can be associated with the Phase 2 SA.
2001-05-05Adhere to the new set_spi prototype.Angelos D. Keromytis
2001-05-05Change the set_spi prototype so that it gets the Phase 1 SA passed as well.Angelos D. Keromytis
2001-05-05Change set_spi prototype.Angelos D. Keromytis
2001-05-05Document default-phase2-suites tag.Angelos D. Keromytis
2001-05-05Add comment about finalize routine processing.Angelos D. Keromytis
2001-05-04Typo in error string; grange@rt.mipt.ruTodd C. Miller
2001-05-02T doesnt take an argEric Jackson
2001-05-02implement "deletetunnel" (removes tunnel outer IP address pair)Jun-ichiro itojun Hagino
rename "giftunnel" intto "tunnel", to reduce diffs with netbsd. (giftunnel is still usable for backward compat) markus and niels ok'ed.
2001-05-01Remove PCVT cruft.Aaron Campbell
2001-04-30the -> toBrad Smith
2001-04-30Assure that we always close the socket, and that the default behaviorEric Jackson
is always chosen. Cleanup the documentation and add a security section about WEP taken from FreeBSD.
2001-04-30Mention the sample configuration directory. Cleanup some .Nm usage.Hakan Olsson
2001-04-30Add a FILES section describing default and sample file locations.Hakan Olsson
2001-04-30mention how to generate extended attributes for certs with openssl;Niels Provos
from tim newsham; okay niklas@ ho@
2001-04-30Be more verbose about fifo ui operations.Hakan Olsson
2001-04-24Correct SA refcounting. Fixes a bug where isakmpd could die when a peer wasNiklas Hallqvist
discovered to have rebooted, and old now invalid SAs had to be garbage- collected.
2001-04-23Various man page fixes and improvements from gluk@Aaron Campbell
2001-04-23fasion -> fashion; spotted by ericj@Aaron Campbell
2001-04-22Update pdisk manpage to match formatting for other manpages, correctionsDale Rahn
appropriate for openbsd.
2001-04-19PF_KEY identity extensions are NUL-terminated. Do not forget neither toNiklas Hallqvist
allocate for the NUL, nor to actually transfer it.
2001-04-19Cleanup dirpref and synhronize superblock with freebsd.Grigoriy Orlov
From FreeBSD with little changes. art@ ok.
2001-04-17Match quoting on this...Dale Rahn
2001-04-17Add pdisk to list of programs to build for powerpc, all other archsDale Rahn
will build the manpage, with the proper destination.
2001-04-16check for 'i' before the getopt. (idea from freebsd)Eric Jackson
this allows us to call the functions directly from the switch, which lets us now put all options on ONE command line, instead of separating them out into several command's. ok tholo@, deraadt@
2001-04-16We default to infrastructure mode now; say so in the man page instead ofThorsten Lockert
claiming we do ad-hoc by default. ok ericj@
2001-04-16much more cleanup.Eric Jackson
- Only create the socket for ioctl()'s once. - get rid of gratuitous argument passing - treat an_dump* function different than the regular options - fix the -T option, it doesnt take an arguement. deraadt@, tholo@ ok