summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix regression in setkey whereby parser would fail to recognise tcp asbms2004-03-312-0/+2
| | | | | | | both a security protocol and an upper level protocol for encapsulation. PR: bin/63616 Submitted by: ume@
* pcap clients should use strlcpy() from the base system libc by default also.bms2004-03-311-7/+0
|
* snprintf() and vsnprintf() are part of our base system libc, thereforebms2004-03-311-10/+0
| | | | | | | | | pcap should not fall back to its own implementations in the absence of HAVE_SNPRINTF and HAVE_VSNPRINTF defines when compiled and installed as part of the world. This should fix builds of pflogd and packages depending on the base system libpcap. Reported by: Andrzej Tobola
* Staticize pnp methods, style fixes. Remove unused variable to unbreaknjl2004-03-312-23/+17
| | | | kernel build.
* Add ACPI path in location string for ACPI namespace aware PCI device.takawata2004-03-311-1/+20
|
* Add an interface to pass an argument to the resource parsing functions.njl2004-03-313-7/+9
| | | | | | | | | | | This is just groundwork for changing sysresource behavior. PR: Submitted by: Reviewed by: Approved by: Obtained from: MFC after:
* Style fix.takawata2004-03-311-39/+49
| | | | Pointed out by: njl
* Merge of tcpdump 3.8.3 from tcpdump.org.bms2004-03-312-87/+183
|
* Merge of tcpdump 3.8.3 from tcpdump.org, with the following caveats:bms2004-03-3134-3197/+4892
| | | | | | | | | | | print-atm.c no longer performs special handling for FORE headers; these can no doubt be re-added at a later date. print-fr.c is effectively a no-op. print-llc.c has had the default_print_unaligned() call removed as tcpdump no longer defines this function, however the prototype is still present. Suggest we roll in a diff to use print_unknown_data().
* Add more DLT types required by libpcap 0.8.3.bms2004-03-311-0/+52
| | | | Maintain numeric sort order.
* Update system bpf headers for libpcap 0.8.3.bms2004-03-311-1/+58
| | | | Maintain listing of DLT link types in numeric order.
* Support the D-Link DGE-530T. Mine appears to have a blank eeprom, so assumemckay2004-03-314-2/+56
| | | | | | | | | | they all do and handle that without alarming the user. Also pull in a bit of defensive code from OpenBSD that triggers when a card is recognised but not properly classified as either Genesis or Yukon. Not that I could ever have needed this. :-) Obtained from: OpenBSD/NetBSD (partially) MFC after: 2 weeks
* Correct imported pcap.h for FreeBSD builds.bms2004-03-311-7/+1
|
* This commit was generated by cvs2svn to compensate for changes in r127668,bms2004-03-31151-7650/+21906
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import tcpdump 3.8.3, from http://www.tcpdump.org/releases/tcpdump-3.8.3.tar.gzbms2004-03-31185-10859/+27213
| |
* | Merge of libpcap 0.8.3 from tcpdump.org.bms2004-03-3112-922/+2791
| |
* | This commit was generated by cvs2svn to compensate for changes in r127664,bms2004-03-3154-3070/+13564
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Import libpcap 0.8.3, from http://www.tcpdump.org/releases/libpcap-0.8.3.tar.gzbms2004-03-3164-3499/+16463
| | |
* | | Extensive documentation changes to the script, but onlyluigi2004-03-312-98/+174
| | | | | | | | | | | | | | | | | | | | | | | | | | | comments and empty lines have been touched. All of this should go in the diskless(8) manpage, now if we had some kind of 'literate programming' tool to extract the comments from the script and put them in a reasonable nroff format, it would be a lot easier to keep code and docs in sync
* | | Give in to the oblique nagging and move AAC and AHC/AHD comments out ofscottl2004-03-312-42/+34
| | | | | | | | | | | | /sys/conf/options and into /sys/conf/NOTES
* | | Remove unused variable.julian2004-03-311-2/+0
| | |
* | | The end argument to bus_alloc_resource() should have been ~0 andgrehan2004-03-311-2/+1
| | | | | | | | | | | | | | | | | | | | | not ~1, but the call has been switched over to bus_alloc_resource_any() which has the same effect. Submitted by: Suleiman Souhlal <refugee@segfaulted.com>
* | | Fix Yet Another 16 byte stack alignment bug. Thankfully, this one ispeter2004-03-312-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | solved by a simple 'make world'. The signalcontext function was going to the trouble of generating an even 16 byte alignment, but in fact it needed to be odd aligned to simulate the 8-byte return address having been pushed by the caller. This fixes yet another group of crashes in applications using libpthread. And yet again, it was my fault all along. While here, rename the duplicate internal ctx_wrapper() functions to makectx_wrapper() and sigctx_wrapper() so that traces aren't ambiguous.
* | | Minor changes mostly as discussed on the lists a few days ago:luigi2004-03-312-12/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + SUBDIR.cpio.gz prevents files from SUBDIR/ to be copied when priming the memory filesystems. This restores the old behaviour and makes the copy process a lot more efficient + look for templates also in the list of directories supplied by bootp/dhcp via the T134 option aka kern.bootp_cookie + keep track of directories temporarily mounted with "remount" or "diskless_remount" commands and unmount them once we are done with them (at the end of this script).
* | | In sofree(), avoid nested declaration and initialization inrwatson2004-03-311-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | declaration. Observe that initialization in declaration is frequently incompatible with locking, not just a bad idea due to style(9). Submitted by: bde
* | | Add David Young's descriptive text for the radiotap interface.bms2004-03-311-2/+20
| | | | | | | | | | | | Add David Young to copyright comments.
* | | Fix a typo: remove duplicate word 'interface'.bms2004-03-311-1/+1
| | |
* | | - Add an optimized page copy function for use by pmap_copy_page(). It isalc2004-03-313-3/+30
| | | | | | | | | | | | | | | roughly four times faster than bcopy() for uncached pages. - Sort the function prototypes in md_var.h.
* | | Export uipc_connect2() from uipc_usrreq.c instead of unp_connect2(),rwatson2004-03-314-5/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and consume that interface in portalfs and fifofs instead. In the new world order, unp_connect2() assumes that the unpcb mutex is held, whereas uipc_connect2() validates that the passed sockets are UNIX domain sockets, then grabs the mutex. NB: the portalfs and fifofs code gets down and dirty with UNIX domain sockets. Maybe this is a bad thing.
* | | By default, ich4 has NAMBAR and NABMBAR i/o spaces asmatk2004-03-311-1/+12
| | | | | | | | | | | | | | | | | | | | | | | | read-only. Need to enable "legacy support", by poking into pci config space. (comment from the patch) Submited by: Autrijus Tang <autrijus@autrijus.org> Approved by: tanimura (mentor)
* | | Implement a '-f' flag to teach bsdlabel to work on files instead ofluigi2004-03-302-13/+52
| | | | | | | | | | | | disk partitions.
* | | add support for setting 802.11 rtsthreshold, transmit power,sam2004-03-304-1/+101
| | | | | | | | | | | | | | | | | | and 11g protection mode Reviewed by: imp (just code)
* | | o add support for controlling the power of transmitted framessam2004-03-305-0/+54
| | | | | | | | | | | | | | | | | | | | | o add support for controlling the 11g protection mechanism used to protect OFDM frames in a mixed 11b/g network Reviewed by: imp
* | | Add a snapshot of build32.sh for amd64 systems. The readme and commentspeter2004-03-302-0/+66
| | | | | | | | | | | | describe the (severe) restrictions and future plans.
* | | Only call if_init when doing SIOCSIFADDR if the interface is not markedsam2004-03-301-0/+60
| | | | | | | | | | | | | | | | | | up (IFF_UP). This eliminates extraneous AP scanning. Reviewed by: imp
* | | Fix today's faux pas by:trhodes2004-03-301-16/+5
| | | | | | | | | | | | | | | | | | | | | | | | Removing the -compact option passed to .Bl macro to avoid useless .Pp macros; Adding a missing period; Using .Xr with .Nd since makewhatis(1) has no support for cases where the Xref is absent. Informed by: ru
* | | Add an adduser.conf manual page.trhodes2004-03-303-3/+211
| | | | | | | | | | | | | | | | | | | | | Hook it to the build in Makefile. Xref from adduser.8. Update adduser.8's BUGS section. Bump the date on adduser.8.
* | | Remove the -pthread from the last commit, as OpenSSL doesn't actuallydwmalone2004-03-301-1/+1
| | | | | | | | | | | | | | | | | | | | | call any pthread functions as we use compile it. We keep the -DOPENSSL_THREADS, which stops OpenSSL doing thread-unsafe stuff. Requested by: ru
* | | Synopsis fixes:cperciva2004-03-302-12/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * `pkg_info -flags' needs either `-a' or a package name. [1] * Add -Q option to manual page. * Update `usage:' to match the manual page. PR: misc/64786 [1] Reviewed by: ru MFC after: 3 days
* | | Add a cross reference to exports(5). While exports is not directlysimon2004-03-301-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | tied to nfsd(8), exports is the configuration file users will most likely need to configure when dealing with a NFS server. Submitted by: Florian Hars <hars@bik-gmbh.de> PR: docs/64714 MFC after: 3 days
* | | Remove a stray \n from a setproctitle.dwmalone2004-03-301-1/+1
| | | | | | | | | | | | Submitted by: Niki Denev <nike_d@cytexbg.com>
* | | Previous commit fixed one braino but left another in place.des2004-03-301-1/+1
| | |
* | | Sychronize with reality: nologin(8) is now in /usr/sbincperciva2004-03-301-3/+3
| | | | | | | | | | | | Reminded by: trhodes
* | | Switch ste_encap() over to using m_defrag().ru2004-03-301-14/+2
| | | | | | | | | | | | | | | | | | | | | | | | No functional change, the previous ste_encap() was correct WRT long mbuf chains; this just reduces code duplication. MFC after: 3 days Prodded by: ambrisko
* | | Synchronize with reality: nologin(8) is now in /usr/sbincperciva2004-03-301-16/+16
| | | | | | | | | | | | Reminded by: trhodes
* | | Added options for 3ware 9000 series RAID controller driver (twa).vkashyap2004-03-301-0/+4
| | |
* | | From the list of calendars, remove some duplicate entries which were addedcperciva2004-03-301-9/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | as a result of mis-sorting. PR Submitter wanted to see a sorted list of non-national holidays followed by a sorted list of national holidays; I'm not going to do this, because I don't think we want to get into the "what is a nation?" debate. PR: docs/64848 Submitted by: Ulrich Spoerlein <q@uni.de> (approximately) MFC after: 3 days
* | | Shut up a couple of annoying gcc warnings. Do not enclose the fixes withmlaier2004-03-301-14/+16
| | | | | | | | | | | | | | | | | | | | | | | | #ifdefs in order to loop it back to OpenBSD after the next import. There are a some implicit asserts involved which might be better spelled out explicitly (af == AF_INET ...) Approved by: bms(mentor)
* | | Add two most recent Security Advisories to errata.kensmith2004-03-301-0/+19
| | |
* | | When a dynamic NSS module is built and linked against a threadnectar2004-03-303-23/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | library, it may pull in that thread library at run time. If the process started out single-threaded, this could cause attempts to release locks that do not exist. Guard against this possibility by checking __isthreaded before invoking thread primitives. A similar problem remains if the process is linked against one thread library, but the NSS module is linked against another. This can only be avoided by careful design of the NSS module. Submitted by: Sean McNeil <sean@mcneil.com> (mostly; bugs are mine)
OpenPOWER on IntegriCloud