aboutsummaryrefslogtreecommitdiff
path: root/sys/net
Commit message (Expand)AuthorAgeFilesLines
* Add the module version to fix the loading with if_bridge.Andrew Thompson2006-08-121-0/+1
* Optionally pad outgoing frames to the minimum of 60 bytes (excl. FCS)Yaroslav Tykhiy2006-08-111-0/+33
* Since bpf_allocbufs() uses malloc() with M_WAITOK, don't check returnRobert Watson2006-08-091-16/+9
* Add kqueue support to if_tun. Loosely based on if_tap changes.Robert Watson2006-08-081-1/+119
* With exception of the if_name() macro, all definitions in net_osdep.hBrooks Davis2006-08-046-344/+1
* Should vlan_input() ever be called with ifp pointing to a non-EthernetYaroslav Tykhiy2006-08-031-4/+5
* Back out rev. 1.107 because it introduced as many problemsYaroslav Tykhiy2006-08-031-9/+15
* - Use the new bridgestp callback to once again flush our bridge routes when anAndrew Thompson2006-08-021-2/+38
* Tell bridgestp that we are about to free the memory so it can cleanup.Andrew Thompson2006-08-021-0/+3
* Fix style in the last commit, the variable declaration goes at the top of theAndrew Thompson2006-08-021-1/+2
* Add a callback so we can notify the parent bridge that a port state change hasAndrew Thompson2006-08-022-4/+43
* Be sure to disable the port when removing it from STP.Andrew Thompson2006-08-021-0/+2
* In vlan_input(), if the network interface does not perform h/w basedQing Li2006-08-011-15/+9
* Add some statistics that are needed to support RFC4188 as part of the SoC2006Andrew Thompson2006-07-314-1/+161
* Remove the dependency of bridgestp.h on if_bridgevar.h by moving a couple ofAndrew Thompson2006-07-274-52/+50
* Fixing compilation bustage: net/if_bridgevar.h depends on net/bridgestp.h.Tai-hwa Liang2006-07-272-0/+2
* bridgestp is now a seperate module.Andrew Thompson2006-07-261-0/+1
* Remove stp variables that are already initialised in bstp_attach().Andrew Thompson2006-07-261-5/+0
* /tmp/cvsuusTrcAndrew Thompson2006-07-264-723/+953
* Remove variables that are overridden by ether_ifattach(). This clears up anyAndrew Thompson2006-07-261-3/+0
* add support for 802.11 packet injection via bpfSam Leffler2006-07-261-0/+31
* Rather than calling mircotime() in catchpacket(), make catchpacket()David Malone2006-07-241-6/+30
* Change semantics of socket close and detach. Add a new protocol switchRobert Watson2006-07-212-1/+19
* Use TAILQ_FOREACH instead of poking around in the guts of the listBrooks Davis2006-07-151-8/+5
* Drop a pointless cast of ifp->if_softc to (struct tap_softc *).Brooks Davis2006-07-151-1/+1
* Catch up with the revised network interface cloning which takes an optionalAndrew Thompson2006-07-101-2/+2
* Revise network interface cloning to take an optional opaqueSam Leffler2006-07-0912-35/+73
* Adjust rt_(set|get)metrics() to do kernel <-> userland timebase conversion.Oleg Bulyzhin2006-07-061-2/+7
* Fix a braino in the last revision, enc_clone_destroy needs return void insteadAndrew Thompson2006-07-041-12/+3
* Adjust descriptor locking to tell the kqueue subsystem that our descriptor isChristian S.J. Peron2006-07-031-3/+1
* There is a consensus that ifaddr.ifa_addr should never be NULL,Yaroslav Tykhiy2006-06-294-29/+20
* Use TAILQ_FOREACH in the __FreeBSD__ case, too.Yaroslav Tykhiy2006-06-291-2/+1
* Use TAILQ_FOREACH.Yaroslav Tykhiy2006-06-291-4/+1
* Use the nifty TAILQ_FOREACH.Yaroslav Tykhiy2006-06-291-2/+1
* Detach the interface first, do vlan_unconfig() then.Yaroslav Tykhiy2006-06-291-9/+3
* Remove a few unused things.Yaroslav Tykhiy2006-06-291-12/+8
* Reduce unneeded code duplication.Yaroslav Tykhiy2006-06-291-12/+1
* A small race existed where the lock was dropped between when encif wasAndrew Thompson2006-06-281-24/+20
* Simplify ipsec_bpf by using bpf_mtap2().Andrew Thompson2006-06-271-9/+2
* Add a pseudo interface for packet filtering IPSec connections before or afterAndrew Thompson2006-06-262-0/+324
* Fix the VLAN_ARRAY case, mostly regarding improper use of atomic(9)Yaroslav Tykhiy2006-06-211-30/+16
* Track interface department events and detach vlans fromYaroslav Tykhiy2006-06-211-8/+76
* - First initialize ifnet, and then insert it into globalGleb Smirnoff2006-06-211-14/+16
* Allow gif interfaces to be added as span ports, the user may want to send aAndrew Thompson2006-06-201-0/+1
* Import interface groups from OpenBSD. This allows to group interfaces inMax Laier2006-06-194-0/+321
* Fix spelling mistake in comment.Andrew Thompson2006-06-191-1/+1
* Since we are doing some bpf(4) clean up, change a couple of function prototypesChristian S.J. Peron2006-06-151-142/+48
* If bpf(4) has not been compiled into the kernel, initialize the bpf interfaceChristian S.J. Peron2006-06-142-1/+6
* Use bit operations to get a locally administered address rather than using aAndrew Thompson2006-06-121-5/+4
* Fix KASSERT conditions in if_deregister_com_alloc().Max Khon2006-06-111-2/+2