summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-06-24Old M of mine, uncovered by the recent dhcpd update: Bypass IPsec in allNiklas Hallqvist
DHCP traffic.
2001-06-24Fix RSA structure.Angelos D. Keromytis
2001-06-24No space between function name and parenthesized arg types in a functionTodd C. Miller
prototype. Also nuke some __P's while I am in here.
2001-06-24Changes in ddb, mostly from NetBSD, to support ddb continue.Dale Rahn
Other cleanups in debugger.
2001-06-24Remove an over-optimization from the polling loop of siop_scsicmd(),Kenneth R Westerback
i.e. calling siop_print_info() immediately for async devices. With the change to use xs->sc_link as parameter to siop_print_info() this immediate call wouldn't work as the sc_link is not initialized until AFTER the return from processing the INQUIRY command. So, just use the default negotiation logic which is triggered by the next command to be handled.
2001-06-24use new timeouts for spd expirations (hmm cvs did not pick up the file); ho@ okMichael Shalayeff
2001-06-24use new timeouts for spd expirations; ho@ okMichael Shalayeff
2001-06-24pack structures better; dhartmei okTheo de Raadt
2001-06-24REGENTS -> COPYRIGHT HOLDERSDaniel Hartmeier
2001-06-24REGENTS? ;)Daniel Hartmeier
2001-06-24REGENTS? ;)Daniel Hartmeier
2001-06-24cold is in systm nowMichael Shalayeff
2001-06-24PACKETFILTER_H now PFVAR_H. thanks smartKjell Wooding
2001-06-24Add pf.Artur Grabowski
2001-06-24When splitting instance from username, treat '/' as a separator asTodd C. Miller
well (for Kerb5).
2001-06-24wrong place for coldMichael Shalayeff
2001-06-24Change handling of NFS root vnode. Moves recognition of NFS root vnode intoConstantine Sapuntzakis
nfs_nget. Root vnode no longer pinned in inode cache. Also, forceable unmounts of an nfs file system now work even if there are extra references to the NFS root.
2001-06-24on pull_hdr(), check short m->m_pkthdr.len. fix mesasge (it's not the firstJun-ichiro itojun Hagino
fragment, it's too short packet)
2001-06-24Print TDBF_USEDTUNNEL in ipsp_kern()Angelos D. Keromytis
2001-06-24backout m_copydata portion. NAT code assumes that they can touch the mbufJun-ichiro itojun Hagino
directly. use m_pulldown instead.
2001-06-24Some cleanup.Hakan Olsson
2001-06-24Move and rename packet filter userland.Kjell Wooding
grr. CVS: making easy things difficult, and directory operations impossible.
2001-06-24remove cold.Federico G. Schwindt
2001-06-24remove cold.Federico G. Schwindt
2001-06-24cold is in systm.h nowMichael Shalayeff
2001-06-24pull_hdr() now takes header offset explicitly, to help header chain parsingJun-ichiro itojun Hagino
(v6, ipsec)
2001-06-24place extern cold here; per discussion w/ art@Michael Shalayeff
2001-06-24only run timeout if stirring happened, save cycles for mass energy conservationMichael Shalayeff
2001-06-24drop if packet is too shortJun-ichiro itojun Hagino
2001-06-24check M_PKTHDR (DIAGNOSTIC)Jun-ichiro itojun Hagino
avoid m_pullup for headers other than IPv4 header itself (will be critical for IPv6 and and chained headers like headers after AH). deraadt ok
2001-06-24/etc/srvtab -> /etc/kerberosIV/srvtabHans Insulander
2001-06-24move cold to .hFederico G. Schwindt
2001-06-24move extern int cold to .hFederico G. Schwindt
2001-06-24Fix logic, add some more sysctl stuff. The only reason vmstat is stillAngelos D. Keromytis
setgid is because of the -i information (Theo needs to fix that for all archs).
2001-06-24ether_input_mbuf().Federico G. Schwindt
2001-06-24more ether_input_mbuf() conversion.Federico G. Schwindt
2001-06-24Add gmac_setladrf functionality from netbsd, this was missed in a previousDale Rahn
merge. IP6 now works configures.
2001-06-24Add userland for the new packet filter.Kjell Wooding
Code from dhartmei.
2001-06-24pf mods for bridge; not yet testedJason Wright
2001-06-24o wi(4) does BSS by default, not ad-hocTodd C. Miller
o Newer wavelan cards use channel 10 by default
2001-06-24Initial import of pf, an all-new ipf-compatable packet filter.Kjell Wooding
Insane amounts of work done my dhartmei. Great work!
2001-06-24update reference to sys/netinet6/IMPLEMENTATIONJun-ichiro itojun Hagino
2001-06-24they are out of sync with the current status. better get rid of them.Jun-ichiro itojun Hagino
2001-06-24Remove some redundent copies of the total length/skip values and use theJason Wright
descriptors passed in instead.
2001-06-24Build krb5_verify_user(3)Hans Insulander
2001-06-24Import of heimdal-0.4eHans Insulander
2001-06-24MLINK _all_ of the krb5 library manpages.Hans Insulander
(This was incredibly boring...)
2001-06-24remove misleading historyNiels Provos
2001-06-24mdoc fixes. from netbsd-current by wiz@netbsdJun-ichiro itojun Hagino
2001-06-24Pass the device's scsi_link to siop_print_info(), instead of theKenneth R Westerback
adapter's siop_softc. This allows easy access to the dv_xname of the device whose negotiation results are being reported. This makes boot probe and subsequent log messages clearer. e.g. message will now read sd0: negotiated tagged 16 bit 20 MHz 16 REQ/ACK offset xfers instead of siop0: target 0 now using tagged 16 bit 20 MHz 16 REQ/ACK offset xfers Clean up siop_print_info() a bit as long as we are there.