summaryrefslogtreecommitdiffstats
path: root/sys/net/if_vether.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Add missing #if's to fix build without bpf(4).mvs2020-08-281-2/+3
* Leave default ifq_maxlen handling to ifq_init()kn2020-08-211-2/+1
* vether(4) is pretty dummy. It contains nothing requires to be protected.mvs2020-08-091-10/+7
* Add missing `IFXF_CLONED' flag to clone interfaces.mvs2020-07-281-1/+2
* Change users of IFQ_SET_MAXLEN() and IFQ_IS_EMPTY() to use the "new" API.patrick2020-07-101-2/+2
* Change users of IFQ_DEQUEUE(), IFQ_ENQUEUE() and IFQ_LEN() to use thepatrick2020-07-101-2/+2
* Creating a cloned interface could return ENOMEM due to temporarybluhm2018-01-091-5/+2
* move counting if_opackets next to counting if_obytes in if_enqueue.dlg2017-01-221-2/+1
* For virtual Ethernet drivers that don't have a technical limit of thereyk2016-11-291-1/+2
* We're always ready! So send IFQ_SET_READY() to the bitbucket.mpi2016-04-131-2/+1
* remove old lint annotationstedu2015-12-051-2/+1
* arp_ifinit() is no longer required.mpi2015-10-251-4/+1
* Pass output packets to bpf(4). This is helpful when debugging stackmpi2015-05-231-5/+12
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
* unifdef INET in net code as a precursor to removing the pretend option.tedu2014-12-191-7/+1
* length argument for some free() calls; ok dougderaadt2014-11-231-2/+2
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-2/+2
* Uniformize drivers doing nothing with their multicast filters to makempi2013-10-191-18/+2
* no need for a lot of code to include proc.htedu2013-03-281-2/+1
* Remove various read-only *maxlen variables and use IFQ_MAXLEN directly.mpi2013-03-261-2/+2
* use ifmedia_delete_instance() when destroying a vetherderaadt2011-07-221-1/+2
* ugly spacingderaadt2010-04-021-6/+4
* Special-case SIOCADDMULTI and SIOCDELMULTI ioctls, based on code from if_tun.stsp2010-04-021-1/+22
* allow this to compile in the never-gonna-happen world without INETderaadt2010-04-021-1/+3
* dont maintain a list of vether devices inside the driver if they are neverdlg2010-03-231-13/+1
* delete more left-over stuff from vether developmentderaadt2010-01-121-9/+1
* the bridge does bpf for us, so we do not need bpf.hderaadt2010-01-121-8/+1
* delete the unused debug macrosderaadt2010-01-121-7/+1
* do not need rndvar.h anymorederaadt2010-01-121-3/+1
* Unify the various fake ethernet generators as ether_fakeaddr() whichderaadt2010-01-121-13/+2
* Add a lot of bpf and counter manipulation to the bridge. The bridgederaadt2009-11-221-24/+6
* improve the bpf path. packets we send out via the bridge are seen, butderaadt2009-11-181-6/+10
* set IFCAP_VLAN_MTU; from bradderaadt2009-11-181-1/+4
* count packets; from claudioderaadt2009-11-121-3/+7
* s/MPLS_DEBUG/VETHER_DEBUGmpf2009-11-091-2/+2
* vether(4) is a virtual ethernet device driver which can be usedderaadt2009-11-091-0/+232