summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
...
* - support AES counter mode for ESP.ume2003-10-132-0/+6
| | | | | | | | - use size_t as return type of schedlen(), as there's no error check needed. - clear key schedule buffer before freeing. Obtained from: KAME
* Fix two buffer overflows caused by off-by-one errors: avoid writing a nulltjr2003-10-131-2/+2
| | | | | | | character 1 byte past the end of cmdline[] when libedit is being used for input, and avoid writing a null pointer 1 element past the end of margv[]. Reviewed by: gad
* - support AES XCBC MAC for AHume2003-10-132-0/+3
| | | | | | - correct SADB_X_AALG_RIPEMD160HMAC to 8 Obtained from: KAME
* Update Bluetooth code.emax2003-10-1244-463/+1992
| | | | | Reviewed by: M. Warner Losh <imp@bsdimp.com>; John Hay <jhay@freebsd.org> Approved by: M. Warner Losh <imp@bsdimp.com> (mentor)
* Update the number of ports.murray2003-10-121-1/+1
|
* - RIPEMD160 supportume2003-10-122-0/+3
| | | | | | - pass size arg to ah->result (avoid assuming result buffer size) Obtained from: KAME
* Fix a BSS buffer overflow caused by makeargv() writing past the end oftjr2003-10-111-2/+3
| | | | margv[] when an input line contains 20 or more space-separated words.
* Typos fixing:blackend2003-10-051-2/+2
| | | | | paramters -> parameters assoicated -> associated
* Ooops. Committed sin number 1: updating the code w/o updating the comments.imp2003-10-041-1/+2
| | | | Update the comments too.
* I've been burned about half a dozen times by the old PAO syntax forimp2003-10-041-0/+2
| | | | | | | 'any' interrupt. There's no reason not to be liberal here and accept the PAO syntax. MFC After: 2 weeks
* missing wordnaddy2003-10-041-1/+1
|
* reference ntpd(8)naddy2003-10-041-4/+7
|
* Handle a 'const' parameter without using __DECONST().gad2003-10-041-8/+14
| | | | MFC after: 14 days
* remove unused variablesam2003-10-031-2/+0
| | | | Supported by: FreeBSD Foundation
* mdoc(7) cleanups (use .Va, not .Dv, for sysctls.)bms2003-10-031-2/+2
| | | | Reviewed by: ru
* mdoc(7) cleanup: Break up sentences so that they start on new lines.bms2003-10-031-6/+7
|
* Point out the existence of net.link.ether.inet.log_arp_movements.bms2003-10-031-1/+5
| | | | Add sysctl(8) to the list of cross-referenced manual pages.
* Update arp(4) to document the 'arp: foo is on if0 but got reply frombms2003-10-031-0/+9
| | | | | | | bar on if1' message. PR: bin/48489 Requested by: ru
* Mark the -i and -n options as mutually exclusive and fix variousnaddy2003-10-031-13/+17
| | | | | | | | mdoc formatting nits. PR: 57027 Approved by: simon Obtained from: OpenBSD
* Add asf for amd64peter2003-09-301-0/+1
|
* Add mptablepeter2003-09-301-0/+1
|
* Make this build and work on amd64 (sledge at least).peter2003-09-302-39/+40
|
* Document that the atheros driver supports wicontrol too. Minor wordimp2003-09-291-18/+22
| | | | | | | smithing as approrpiate. PR: 57327 Submitted by: Matt Peterson
* Add -L to the usage message.imp2003-09-291-0/+1
| | | | | PR: 57327 Submitted by: Matt Peterson
* Tweak "system security profiles:rwatson2003-09-282-14/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | (1) Don't modify the configuration of the NFS server as a result of selecting a profile. We already explicitly prompt for the NFS server configuration during install, and the user may not get much advance notice that we're turning it off again. Instead, use profiles (for better or for worse) only for security tuning. (2) Don't modify the sendmail setting as part of the security profile: use the default from /etc/defaults/rc.conf rather than explicitly specifying. Note that the default in /etc/defaults/rc.conf is more conservative than the explicit rc.conf entry added by sysinstall during install, as it does not permit SMTP delivery. (3) Update "congratulations on your profile" text to reflect these changes. Note that security profiles now affect only the securelevel and sshd settings. My leaning would be to make sshd an explicit configuration option, move securelevels to the security menu, and drop security profiles entirely. However, that requires more plumbing of sendmail than I'm currently willing to invest. We may want to add a "permit SMTP delivery" question to the install process.
* - Another update to list of FTP siteskensmith2003-09-282-0/+34
| | | | Approved by: murray
* Fix a cut n paste typo I introduced in rev 1.211.trhodes2003-09-272-2/+2
| | | | | | | PR: 57012 Submitted by: Nobuyuki Koganemaru <n-kogane@syd.odn.ne.jp> (original version) Friendly prod provided by: murray MFC: after re approval
* Add -p option to dump phy registers.simokawa2003-09-252-2/+96
|
* Add -s option to strip subdirectory from module path.simokawa2003-09-252-6/+13
| | | | | | e.g. moudle-path/firewire/firewire.ko -> module-path/firewire.ko Reviewed by: grog
* Update list of FTP sites.kensmith2003-09-242-248/+234
| | | | Approved by: jhb
* Add Cisco Skinny Station protocol support to libalias, natd, and ppp.marcus2003-09-234-0/+34
| | | | | | | | | | | | | | | Skinny is the protocol used by Cisco IP phones to talk to Cisco Call Managers. With this code, one can use a Cisco IP phone behind a FreeBSD NAT gateway. Currently, having the Call Manager behind the NAT gateway is not supported. More information on enabling Skinny support in libalias, natd, and ppp can be found in those applications' manpages. PR: 55843 Reviewed by: ru Approved by: ru MFC after: 30 days
* Restructure the time processing routines, mainly to fix up thegad2003-09-233-85/+480
| | | | | | | | | | "will trim at" message printed when the user requests '-v'. The previous code would often print the wrong time, such as: On Sept 22, run: newsyslog -nv /var/log/wtmp And see: will trim at Mon Sep 1 05:00:00 2003 correct msg: will trim at Wed Oct 1 05:00:00 2003 MFC after: 20 days
* Only print an end '}' if the field was non-zero (i.e. there were some flagsnjl2003-09-211-2/+4
| | | | to print).
* fixed memory leak.suz2003-09-201-1/+4
| | | | Obtained From: KAME
* Name moderate security settings "Moderate", not "Medium"eivind2003-09-182-2/+2
|
* Propagate ioctl() failure to exit statuseivind2003-09-181-7/+10
|
* - Reorder to group the non-obsolete options togethereivind2003-09-181-52/+62
| | | | - Change from "will be deprecated in 5.1" to "was deprecated in 5.1"
* Referring to FreeBSD versions later than 2.0R as "fairly recent" is prettyphk2003-09-182-4/+2
| | | | | | | archaic at this point in time. Pretend nobody runs FreeBSD 1.x anymore in order to not confuse people needlessly. Laplink support probably doesn't even work at this point in time anyway...
* Fix 3 'cast to pointer from integer of different size' warnings.marcel2003-09-172-12/+18
| | | | While here, fix the long line bugs in the same statements.
* Add acpi to the build on ia64. The support for ACPI 2.0x has gottenmarcel2003-09-161-0/+4
| | | | | | | to a point where we don't map the wrong (ie 32-bit) addresses. We don't always dump the right values yet, but that's not critical. Ok'd: njl
* Get rid of duplicates.ru2003-09-146-6/+6
|
* Correct the calculation of "a leap year" in parseDWM. The calculationgad2003-09-141-17/+43
| | | | | | | | would only match a leap year every 400 years. The parseDWM code first showed up in April 2000, so the first time this bug would cause any confusion is in Feb 2004. MFC after: 18 days
* Correct typo in comment.njl2003-09-141-1/+1
|
* For dumping the DSDT (-o option), be sure to use the X_DSDT address ifnjl2003-09-141-1/+7
| | | | appropriate. This should be the last change to make ia64 work.
* Add the -i flag to acpiconf(8) to retrieve battery information.njl2003-09-132-29/+69
| | | | Rename a few structure elements.
* C2/C3 latency is in microseconds (us), not ms.njl2003-09-131-1/+1
|
* Only print various optional fields if they are non-zero. Always print thenjl2003-09-131-24/+31
| | | | required fields, no matter what their value.
* Reduce the default width for IO port GAS printing.njl2003-09-131-4/+4
| | | | Courtesy of: rwatson's chart presentation
* Move the parse8601 and parseDWM routines into a new ptime.c file. Thegad2003-09-124-219/+320
| | | | | | | only code-change is to add a "next_time" parameter to both routines (and that is not used yet). A later update will make "next_time" more useful. MFC after: 20 days
* Remove the unrequired -bi from the newaliases line. Note in the commit logtrhodes2003-09-112-2/+2
| | | | | | that the last change should have read: exim_enable="YES" in the changes listing. Discussed with: ceri
OpenPOWER on IntegriCloud