summaryrefslogtreecommitdiffstats
path: root/sys/net/if_tun.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* begone, fucking rotten appletalk shit. ok roomhenning2011-07-091-12/+1
* use IF_LEN/IFQ_LEN to access and ifqueue's length field. ryan okhenning2011-07-071-4/+4
* kqueue attach functions should return an errno or 0, not a plain 1. Fixnicm2011-07-021-2/+2
* If tunread() fails, we should increment if_oerrors, not if_ierrors.matthew2010-09-231-2/+2
* Don't bother calling suser() in tunopen().matthew2010-09-221-4/+1
* pipex didn't work on output. Fixed following problems:yasuoka2010-07-081-6/+3
* Remove the incorrect if_media code. It is no longer needed to show and trackclaudio2010-05-061-37/+3
* cleanup pipex code. ok henning@yasuoka2010-01-131-7/+6
* do not need rndvar.h anymorederaadt2010-01-121-4/+1
* Remove simple_unlock() that is mistakenly introduced and add requiredyasuoka2010-01-121-2/+2
* Unify the various fake ethernet generators as ether_fakeaddr() whichderaadt2010-01-121-13/+3
* Initial import PIPEX. PIPEX(Pppac IP EXtension) is a IP forwardingyasuoka2010-01-111-1/+37
* Every selwakeup() should have a matching KNOTE() (even if kqueue isn'tnicm2009-11-091-3/+1
* Tag packets into correct rdomain in tunwrite(). For L2 traffic this will beclaudio2009-08-091-1/+2
* Preserve joined interface groups when tun(4) is switchedmpf2009-08-021-6/+36
* Emulate a link state in tun(4). The link state goes up when the device isclaudio2009-06-041-13/+76
* Ensure that bpf_mtap() is always called at the same interrupt priorityjsing2009-02-201-3/+13
* First step towards cleaning up the Ethernet driver ioctl handling.brad2008-10-021-7/+7
* do not count ethernet header twice in if_obytes stats.damien2008-08-041-2/+2
* Prevent virtual interfaces from adding to the random pool.mpf2008-05-071-1/+4
* M_PREPEND can set its first parameter to NULL, and all other codekrw2008-05-061-1/+3
* return with ENOTTY instead of EINVAL for unknown ioctl requests.brad2007-12-201-2/+2
* malloc sweep:henning2007-09-151-3/+2
* remove remaining IPX hooks. all inside #ifdef IPX, so no actual changehenning2007-06-061-12/+1
* one extern seems to be better than 20 for ifqmaxlen; ok krwjason2007-05-261-3/+1
* More comment typos from Diego Casati. Including winners like funtion, allmost,krw2007-05-261-2/+2
* Use if_flags instead of ifr_flags.mpf2007-05-031-2/+2
* For TUNSIFMODE protect the if_flags similar to the TUNSIFINFO case.claudio2007-02-211-4/+3
* Unbreak ppp(8) over tun(4) by restriciting the flags that can be changedclaudio2007-02-161-2/+11
* Change the behaviour of tun(4) on close.claudio2007-02-061-29/+12
* When switching mode inherit the TUN_NBIO and TUN_ASYNC flags and clearclaudio2007-01-261-11/+8
* Fix an mbuf leak in an error path. OK brad@claudio2006-11-101-2/+3
* poll errors should be POLLERR, not some random E valuetedu2006-11-011-2/+2
* allow bpf(4) to ignore packets based on their direction (inbound ordjm2006-03-251-4/+4
* introduce rt_if_remove which takes care of routing table updates for anhenning2006-03-201-15/+4
* Switch tun(4) from encapsualting packets into a long mbuf chain over to useclaudio2006-03-161-2/+18
* change the interface type from IFF_POINTOPOINT to the more correctbrad2006-03-051-2/+2
* With the exception of two other small uncommited diffs this movesbrad2006-03-041-14/+14
* Do not use m_adj() on empty mbufs (m->m_len is uninitialised), instead bumpclaudio2006-01-111-2/+2
* something in the eurobsdcon route-a-thon broke my simple home networkjolan2005-11-291-3/+15
* move the code to delete routes having a specific interface as outputhenning2005-11-251-15/+3
* Move contents of sys/select.h to sys/selinfo.h in preparation for amillert2005-11-211-2/+2
* tun devices get created (cloned) automagically when the device is opened.henning2005-11-171-2/+6
* small doses of KNFhenning2005-11-161-33/+35
* huch, more netns shitzhenning2005-06-081-7/+1
* no more netns handling for the various tunnel devices and loopbackhenning2005-06-081-6/+1
* set RUNNING on open; from Alexey E. Suslikov; ok henning, claudiomarkus2005-05-041-1/+2
* typo, automaticaly -> automaticallybrad2005-05-031-2/+2
* Check IFF_UP at tun_output().mpf2004-11-111-1/+6
* big KNF spanking, no change in object file, ecstatic ok from claudiohenning2004-11-091-139/+101