aboutsummaryrefslogtreecommitdiff
path: root/sys/net
Commit message (Expand)AuthorAgeFilesLines
* Use ETHER_IS_MULTICAST() consistently in ether_resolvemulti().Bruce M Simpson2004-07-091-1/+1
* Use M_ZERO instead of bzero().Bruce M Simpson2004-07-061-2/+1
* Be consistent and use bzero() instead of memset().Bruce M Simpson2004-07-061-1/+1
* Use M_ZERO instead of memset() (!).Bruce M Simpson2004-07-061-2/+1
* Use M_ZERO instead of bzero().Bruce M Simpson2004-07-061-2/+1
* Replace a bzero() after malloc() with M_ZERO.Bruce M Simpson2004-07-061-2/+1
* Style.Bruce M Simpson2004-07-061-13/+15
* In the BPF and ethernet bridging code, don't allow callouts to executeRobert Watson2004-07-052-2/+2
* Workaround a locking problem in vlan(4). vlan_setmulti() may be calledBruce M Simpson2004-07-041-2/+11
* style(9)/whitespace cleanup while I'm in this file.Bruce M Simpson2004-07-041-54/+55
* The net.link.ether.bridge.enable sysctl MIB variable enables bridgeBruce M Simpson2004-07-041-0/+1
* Don't announce the ethernet address when it's 00:00:00:00:00:00. It'sBrooks Davis2004-07-021-2/+7
* Bring in the first chunk of altq driver modifications. This covers theMax Laier2004-07-021-7/+30
* Do not m_free packet since IF_HANDOFF (called from netisr_queue) willRoman Kurakin2004-06-281-1/+1
* Those are unneeded too.Pawel Jakub Dawidek2004-06-271-1/+0
* Add two missing includes and remove two uneeded.Pawel Jakub Dawidek2004-06-272-1/+2
* Pick the hotchar out of the tty structure instead of caching privatePoul-Henning Kamp2004-06-261-0/+1
* Fix line discipline switching issues: If opening a new ldisc fails,Poul-Henning Kamp2004-06-262-17/+4
* Do not count loobacks as other fuilures.Roman Kurakin2004-06-251-1/+2
* Add a couple of #ifdef DEBUG printf()s in vlan_input() I found to beJoerg Wunsch2004-06-241-0/+6
* When considering an ethernet frame that is not destined for us, do notJoerg Wunsch2004-06-241-3/+9
* Make dependencies on the TCP/IP stack conditional on INET / INET6. ThisDag-Erling Smørgrav2004-06-241-0/+21
* Major overhaul of pseudo-interface cloning. Highlights include:Brooks Davis2004-06-2213-306/+784
* Give zlib the ability to be a module that can be depended on,Mark Murray2004-06-201-0/+24
* Include <sys/_lock.h>'s prerequisite <sys/queue.h> before including theBruce Evans2004-06-191-1/+1
* Second half of the dev_t cleanup.Poul-Henning Kamp2004-06-173-3/+3
* Do the dreaded s/dev_t/struct cdev */Poul-Henning Kamp2004-06-168-42/+42
* Replace IF_HANDOFF with new IFQ_HANDOFF to enqueue with ALTQ once enabled onMax Laier2004-06-1511-29/+45
* Lock down rawcb_list, a global list of control blocks for raw sockets,Robert Watson2004-06-153-0/+10
* Fix a typeo in IFQ_HANDOFF.Max Laier2004-06-151-1/+1
* Transform tbr_dequeue into a function pointer in order to build drivers withMax Laier2004-06-152-5/+5
* Fix big-endian build.Doug Rabson2004-06-141-2/+2
* Unbreak non-ALTQ kernel linking. I forgot about tbr_dequeue.Max Laier2004-06-141-1/+1
* Add MAC framework bits to the output path.Doug Rabson2004-06-131-0/+6
* Remove advertising clause.Doug Rabson2004-06-131-4/+0
* Link ALTQ to the build and break with ABI for struct ifnet. Please recompileMax Laier2004-06-135-12/+228
* Add a new driver to support IP over firewire. This driver is intended toDoug Rabson2004-06-133-0/+941
* Extend coverage of SOCK_LOCK(so) to include so_count, the socketRobert Watson2004-06-122-1/+6
* Constify raw_sendspace and raw_recvspace, as they're not mutable.Robert Watson2004-06-111-2/+2
* Switch to conditionally acquiring and dropping Giant around calls intoRobert Watson2004-06-111-2/+2
* Un-staticize 'dst' sockaddr in the stack of bpfwrite() to preventRobert Watson2004-06-111-1/+2
* Introduce a netisr to deliver kernel-generated routing, avoidingRobert Watson2004-06-092-4/+53
* Use ldisc_[de]register() instead of frobbing linesw[] directly.Poul-Henning Kamp2004-06-071-1/+2
* Add helper functions to calculate the standard ethernet CRC inChristian Weisgerber2004-06-022-0/+75
* add missing #include <sys/module.h>Poul-Henning Kamp2004-05-307-0/+7
* Add some missing <sys/module.h> includes which are masked by thePoul-Henning Kamp2004-05-301-0/+1
* Make the comment for DLT_NULL slightly more accurate.David Malone2004-05-301-1/+1
* if_printf() won't emit a newline unless told to.Yaroslav Tykhiy2004-05-261-2/+3
* Keepalive timer should be added if we does not have any sppp consumers beforeRoman Kurakin2004-05-251-2/+2
* After all the relevant drivers have been fixed, fix vlan(4) itselfYaroslav Tykhiy2004-05-251-27/+27