summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Make it clear that -a flag and interface parameter are mutually exclusivecharnier2003-08-162-13/+19
|
* use strlcpy().ume2003-08-161-4/+4
| | | | | Pointed out by: Pawel Jakub Dawidek <nick@garage.freebsd.pl> MFC after: 1 week
* add section namecharnier2003-08-161-1/+1
| | | | Approved by: Nate Lawson
* - added the case of 802.11 to check link status.ume2003-08-161-5/+5
| | | | | | | | - use strncpy just in case. - __P() cleanup. Obtained from: KAME MFC after: 1 week
* - supported a string notation for xxflags.ume2003-08-159-409/+531
| | | | | | | | | | | | | | | | | | | | | | - deprecate routes#N, as it is hard to keep consistency with rtprefixN. accept any number of "rtprefix", "rtrefix0", ..., "rtprefix99". - deprecate "addrs#N", as it is difficult for users to keep consistency with "addrN". accept 100 prefix info in maximum - like "addr", "addr0" ... "addr99". WARNS=2 clean on netbsd. old configuration file should work just fine. behavior change: previously, we rejected "addrN" if there's "addr", and we rejected "addr" if there is "addrN". now we accept both without problem. - when an advertised prefix configured from the kernel has been added or invalidated, notice the change in a short delay. - when invalidating a prefix, do not bark even if there is inconsistency about prefix lifetimes. - wrap more specific route info code into ROUTEINFO. Obtained from: KAME MFC after: 1 week
* use arc4random.ume2003-08-152-1/+7
| | | | | Obtained from: KAME MFC after: 1 week
* variable shared with signal handler needs to be "volatile sig_atomic_t".ume2003-08-151-2/+2
| | | | | Obtained from: KAME MFC after: 1 week
* set LOG_PERROR for openlog() when running foreground.ume2003-08-151-3/+7
| | | | | Obtained from: KAME MFC after: 1 week
* dump the content of route information optionsume2003-08-151-1/+19
| | | | | Obtained from: KAME MFC after: 1 week
* logged the fact to dump the status.ume2003-08-151-0/+3
| | | | | Obtained from: KAME MFC after: 1 week
* daemon() has to be called prior to file descriptor setupsume2003-08-141-2/+2
| | | | | | | (otherwise file descriptors could be closed mistakenly) Obtained from: KAME MFC after: 1 week
* support poll(2).ume2003-08-144-3/+78
| | | | | Obtained from: KAME MFC after: 1 week
* daemon() has to be called prior to file descriptor setupsume2003-08-141-8/+16
| | | | | | | (otherwise file descriptors could be closed mistakenly) Obtained from: KAME MFC after: 1 week
* - rename some variables.ume2003-08-141-27/+14
| | | | | | | - remove unused block. Obtained from: KAME MFC after: 1 week
* signal handler must take "int" arg.ume2003-08-141-4/+5
| | | | | Obtained from: KAME MFC after: 1 week
* avoid fd_set overrun.ume2003-08-141-9/+21
| | | | | Obtained from: KAME MFC after: 1 week
* signal handler must take "int" arg.ume2003-08-141-7/+5
| | | | | Obtained from: KAME MFC after: 1 week
* avoid fd_set overrun.ume2003-08-141-10/+24
| | | | | Obtained from: KAME MFC after: 1 week
* decreased too-strong log levels.ume2003-08-141-5/+9
| | | | | Obtained from: KAME MFC after: 1 week
* Use STDIN_FILENO, STDOUT_FILENO, and STDERR_FILENO in a few moregad2003-08-133-17/+17
| | | | | | | | places (replacing constants 0, 1 & 2). Noticed by: Reviewed by: md5 MFC after: 4 days
* Make this WARNS=6 clean by just constifying two local char pointers.harti2003-08-132-1/+3
|
* Put all the argument-less options together in the synopsis as requiredharti2003-08-131-6/+1
| | | | by style(9).
* Implement two command line options that allow one to change theharti2003-08-132-8/+23
| | | | | | file descriptors that are used for input and output. That allows one, for example, to use nghook to bi-directionally pipe the input and output into/from another non-netgraph-aware program.
* Imply NOLIBC_R for PowerPC.obrien2003-08-131-1/+1
|
* malloc() may return NULL.ume2003-08-121-0/+5
| | | | | Obtained from: KAME MFC after: 1 week
* reduce #ifdef.ume2003-08-118-47/+5
| | | | MFC after: 1 week
* use strlcpy() and snprintf().ume2003-08-116-16/+27
| | | | | Obtained from: KAME MFC after: 1 week
* Remove the band-aid to make these compile on amd64/ia64.njl2003-08-112-12/+2
|
* use int64_t instead of long long.ume2003-08-113-7/+7
| | | | | Obtained from: KAME MFC after: 1 week
* Instead of unconditionally refusing to install if no swap partitionsdas2003-08-102-6/+8
| | | | are specified, prompt the user with a yes/no box.
* Apparently I limited my testing of the ductape and bubblegum solutionmarcel2003-08-092-1/+7
| | | | | | | to acpidb. The same problem exists in iasl. Add JIT patching there too. Add a comment to both makefiles to increase the chance that both kludges are removed when a real solution is committed.
* Perform first-aid: unbreak the build for amd64 and ia64 by patchingmarcel2003-08-091-1/+5
| | | | | | | osunixxf.c on the fly. This avoids having to pull it from the vendor branch or otherwise pollute the repository with new short-lived files. This should hold until the real fix arrives.
* Drop MIP6 code. We don't support MIP6 yet.ume2003-08-084-142/+4
| | | | MFC after: 1 week
* KNF, correct typos and cleanup spaces.ume2003-08-0815-327/+288
| | | | | Obtained from: KAME MFC after: 1 week
* drop the code for the environment where getifaddrs(3) is notume2003-08-083-91/+1
| | | | | | | supported. Obtained from: KAME MFC after: 1 week
* stop use of register.ume2003-08-081-14/+14
| | | | | Obtained from: KAME MFC after: 1 week
* Process the "O bit."ume2003-08-085-2/+183
| | | | | | | | | | If the value of OtherConfigFlag changes from FALSE to TRUE, the host should invoke the stateful autoconfiguration protocol, requesting information. [RFC 2462 Section 5.5.3] Obtained from: KAME MFC after: 1 week
* __FUNCTION__ --> __func__ume2003-08-0813-231/+231
| | | | | Obtained from: KAME MFC after: 1 week
* Fix a bug that caused i386 to produce broken binaries for big-endianru2003-08-081-16/+16
| | | | | 64-bit platforms. (size_t is 32bit on i386, but Elf_Shdr.sh_size is 64bit on SPARC64.)
* Hook acpidb(8) and iasl(8) up to the build and unhook amldb(8). It willnjl2003-08-081-1/+1
| | | | be going away after a short while but still available in ports.
* Add man pages for acpidb and iaslnjl2003-08-072-0/+317
|
* Add the acpidb and iasl utilities. This is not yet hooked up to the build.njl2003-08-074-1/+595
| | | | Obtained from: acpicatools port by Iwasaki-san
* No need to define externs for getopt interface.imp2003-08-071-2/+1
|
* Add a reference to config(5) in the SEE ALSO section.simon2003-08-061-0/+2
| | | | | Suggested by: dcs Approved by: ceri (mentor)
* introduced a flag bit "ND6_IFF_ACCEPT_RTADV" in the nd_ifinfo structure toume2003-08-052-3/+21
| | | | | | | | | | | control whether to accept RAs per-interface basis. the new stuff ensures the backward compatibility; - the kernel does not accept RAs on any interfaces by default. - since the default value of the flag bit is on, the kernel accepts RAs on all interfaces when net.inet6.ip6.accept_rtadv is 1. Obtained from: KAME MFC after: 1 week
* - Use /dev/fwX.Y rather than /dev/fwX.simokawa2003-08-052-31/+71
| | | | | - Add option -u to specify bus number. - Try to open the device only if it's necessary.
* LANG->LC_ALLache2003-08-042-14/+14
| | | | Pointed by: ru
* Use LANG=C before egrep A-Z and tr A-Zache2003-08-041-4/+4
| | | | | Note: this is POSIX requirement, c-c ranges are portable only in POSIX locale Strip [] for tr ranges
* Fix problem differently, useache2003-08-041-10/+10
| | | | | LANG=C tr 'a-z' 'A-Z' for hypotetical case that script may generate non-ascii characters
* Use tr '[:lower:]' '[:upper:]' to work with any localeache2003-08-041-10/+10
|
OpenPOWER on IntegriCloud