summaryrefslogtreecommitdiffstats
path: root/sys/net/if_pppoe.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* pppoe(4): convert ifunit() to if_unit(9)mvs2021-01-191-2/+4
* Process pppoe(4) packets directly, do not queue through netiskn2021-01-041-24/+3
* Fix pppoe_dispatch_disc_pkt definition to be in accordance with style(9)mvs2020-12-301-2/+3
* Convert the `off' argument of pppoe_dispatch_disc_pkt function tomvs2020-12-301-5/+6
* Start documenting locks for struct pppoe_softc memberskn2020-09-131-20/+26
* Leave default ifq_maxlen handling to ifq_init()kn2020-08-211-2/+1
* Add sizes to free(9) callskn2020-08-211-14/+21
* 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
* Use timeout_add_sec(9)kn2019-06-161-9/+9
* Remove almost unused `flags' argument of suser().mpi2018-02-191-2/+2
* Creating a cloned interface could return ENOMEM due to temporarybluhm2018-01-091-5/+2
* If you use sys/param.h, you don't need sys/types.hderaadt2017-09-081-2/+1
* Remove NET_LOCK()'s argument.mpi2017-08-111-10/+8
* Fix double free in pppoe_dispatch_disc_pkt(). If m_pulldown() fails m isclaudio2017-07-191-2/+4
* Protect the global list of softc with the NET_LOCK().mpi2017-05-271-10/+7
* Replace remaining splsoftassert(IPL_SOFTNET) by NET_ASSERT_LOCKED().mpi2017-05-161-2/+2
* move counting if_opackets next to counting if_obytes in if_enqueue.dlg2017-01-221-2/+1
* spacingmpi2017-01-021-23/+23
* pppoe_timeout() needs to take the NET_LOCK().mpi2017-01-021-6/+10
* Don't hardcode vlan/queue priority for pppoe packets; inherit it from thesthen2016-06-141-8/+9
* Set pppoe(4) control frames to high (NC, "network control")sthen2016-05-301-1/+4
* Remove the hack that prevents changing pppoe params at runtime.mikeb2016-04-181-3/+30
* We're always ready! So send IFQ_SET_READY() to the bitbucket.mpi2016-04-131-2/+1
* Building kernels with PPPOE_SERVER enabled has been broken for at leastjsg2016-04-011-197/+1
* remove old lint annotationstedu2015-12-051-2/+1
* Convert pppoe(4) to use if_get()/if_put(): instead of storing areyk2015-11-281-24/+50
* sppp(4) is now only used for pppoe(4) which doesn't use framing, so removesthen2015-11-201-3/+2
* Introduce if_rtrequest() the successor of ifa_rtrequest().mpi2015-10-251-1/+2
* There's no point in abstracting ifp->if_output() as long as pf_test()mpi2015-09-131-3/+3
* Stop overwriting the rt_ifp pointer of RTF_LOCAL routes with lo0ifp.mpi2015-09-121-3/+3
* Store a unique ID, an interface index, rather than a pointer to thempi2015-06-161-12/+12
* replace the use of ifqueues for most input queues serviced by netisrdlg2015-04-101-22/+7
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
* Explicitly include <net/if_var.h> instead of pulling it in <net/if.h>.mpi2014-12-051-1/+2
* move arc4random prototype to systm.h. more appropriate for most codetedu2014-11-181-4/+1
* Correctly set the rtable ID of the packet header when sendingmpi2014-08-131-1/+4
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-17/+17
* g/c unused IFT_L2VLAN, ok reyk bluhmhenning2014-06-071-4/+2
* "struct pkthdr" holds a routing table ID, not a routing domain one.mpi2014-04-141-2/+2
* Remove various external variable declaration from sources files andmpi2013-04-101-3/+1
* no need for a lot of code to include proc.htedu2013-03-281-2/+1
* fix all the suser calls which pass an incorrect p_acflag argument;mikeb2012-04-111-3/+3
* Teach pppoe(4) about RFC 4638. This allows negotiating increased MTU withsthen2012-01-191-8/+48
* cosnistently use IFQ_SET_MAXLEN, surfaced in a discussion with + ok bluhmhenning2011-07-061-3/+3
* ifqueues in BSS don't need NULL init, especially not absolutely incorrecthenning2011-07-051-3/+3
* Do the same rdomain checking in sppp as we do in the Ethernet case.claudio2009-07-131-1/+4
* Introduce splsoftassert(), similar to splassert() but for soft interruptmiod2009-03-151-2/+2
* Make the session id unique per receiving interface so that pppoecanacar2008-10-161-6/+4
* Make sure no two pppoe devices share the same sc_unique identifier. Whilemiod2008-10-111-9/+14