aboutsummaryrefslogtreecommitdiff
path: root/sys/net
Commit message (Expand)AuthorAgeFilesLines
* Move fw_one_pass from ip_fw2.c to ip_input.c so that neitherLuigi Rizzo2002-11-201-1/+1
* Back out some style changes. They are not urgent,Luigi Rizzo2002-11-202-21/+35
* correct function declarations of stubs used for building w/o device bpfSam Leffler2002-11-191-4/+4
* Replace m_copy() with m_copypacket() where applicable.Luigi Rizzo2002-11-171-24/+16
* Fix function headers, remove 'register' from variable declarations.Luigi Rizzo2002-11-171-11/+5
* Massive cleanup of the ip_mroute code.Luigi Rizzo2002-11-151-1/+1
* Back out rev 1.150; things are more complicated than this.Sam Leffler2002-11-151-1/+1
* if_attach should not sleep; change malloc's M_WAITOK to M_NOWAITSam Leffler2002-11-151-1/+1
* network interface and link layer changes:Sam Leffler2002-11-1516-78/+58
* track changes to ethernet input handling to no longer strip the Ethernet headerSam Leffler2002-11-141-48/+55
* o eliminate separate callback interface for h/w tagged input packets; insteadSam Leffler2002-11-142-162/+300
* o add if_nvlans member to track the number of vlans active on an interfaceSam Leffler2002-11-141-9/+3
* o change input packet handling to eliminate the pointer to the structSam Leffler2002-11-141-185/+263
* general cleanups mostly aimed at improving portability of driversSam Leffler2002-11-141-43/+38
* o add support for multiple link types per interface (e.g. 802.11 and Ethernet)Sam Leffler2002-11-143-27/+53
* o add IF_*bps macros for netbsd compatibilitySam Leffler2002-11-141-0/+11
* Fix instances of macros with improperly parenthasized arguments.Alfred Perlstein2002-11-092-15/+15
* Add a cast to quiet a warning.John Baldwin2002-11-071-1/+1
* Don't check IFF_RUNNING in previous change.Hidetoshi Shimokawa2002-10-251-2/+2
* Don't send/recieve packets when the interface is down.Hidetoshi Shimokawa2002-10-231-0/+9
* Use if_printf(ifp, "blah") instead of printf("ppp%d: blah", ifp->if_unit).Brooks Davis2002-10-211-15/+13
* Use if_printf(ifp, "blah") instead of printf("vlan%d: blah", ifp->if_unit).Brooks Davis2002-10-211-2/+2
* Use if_printf(ifp, "blah") instead of printf("sl%d: blah", sc->sc_if.if_unit).Brooks Davis2002-10-211-2/+1
* Use if_printf(ifp, "blah") instead ofBrooks Davis2002-10-215-10/+5
* When packets pass in and out of six-to-four (STF) tunnels, performRobert Watson2002-10-201-0/+15
* We have mem{cpy,cmp,set} functions in the kernel, don't #define them toPoul-Henning Kamp2002-10-201-3/+0
* When a packet is sent via a FDDI interface, perform appropriate MACRobert Watson2002-10-201-0/+12
* When a packet is destined for delivery via an ATM medium, performRobert Watson2002-10-201-0/+11
* Don't us an array[1], it just hides where '&' isn't used right.Poul-Henning Kamp2002-10-201-11/+11
* last arg of in6?_gif_output() is not used any more.Hajimu UMEMOTO2002-10-171-2/+2
* - drop too short IPv6 frameHajimu UMEMOTO2002-10-171-10/+15
* s/gifp/ifp/Hajimu UMEMOTO2002-10-171-11/+11
* de-__P()Alfred Perlstein2002-10-161-3/+3
* - after gif_set_tunnel(), psrc/pdst may be null. set IFF_RUNNING accordingly.Hajimu UMEMOTO2002-10-162-134/+162
* Be consistent about functions being static.Poul-Henning Kamp2002-10-167-12/+12
* FIx misindentation.Poul-Henning Kamp2002-10-162-22/+25
* add definitions for RIPEMD-160 HMAC and Skipjack encryption algorithms,Sam Leffler2002-10-161-0/+2
* Replace aux mbufs with packet tags:Sam Leffler2002-10-164-5/+4
* Correct the definitions of SADB_* to be compatible withHajimu UMEMOTO2002-10-151-15/+15
* Unconditionally restore the pointer to the saved Ethernet header afterCrist J. Clark2002-10-141-4/+1
* When reusing a pointer as a number, at least cast itMaxime Henrion2002-10-061-1/+1
* In an SMP environment post-Giant it is no longer safe to blindlyDon Lewis2002-10-033-6/+6
* Since bpf is no longer an optional component, remove associated ifdef's.Maxim Sobolev2002-10-021-9/+0
* style(9):Mike Barcroft2002-10-021-5/+5
* Use standards visibility conditionals to conditionalize most of thisMike Barcroft2002-10-021-5/+15
* Fix some harmless mis-indents.Poul-Henning Kamp2002-10-013-3/+3
* Fixed some of the namespace pollution in rev.1.33. <sys/systm.h> wasBruce Evans2002-09-291-1/+0
* Be consistent about "static" functions: if the function is markedPoul-Henning Kamp2002-09-283-4/+4
* Don't return(foo(bla)) when foo returns void.Poul-Henning Kamp2002-09-281-2/+4
* Add the "Monitor" interface flag.Poul-Henning Kamp2002-09-272-0/+8