| Commit message (Expand) | Author | Age | Files | Lines |
* | pppoe(4): convert ifunit() to if_unit(9) |  mvs | 2021-01-19 | 1 | -2/+4 |
* | Process pppoe(4) packets directly, do not queue through netis |  kn | 2021-01-04 | 1 | -24/+3 |
* | Fix pppoe_dispatch_disc_pkt definition to be in accordance with style(9) |  mvs | 2020-12-30 | 1 | -2/+3 |
* | Convert the `off' argument of pppoe_dispatch_disc_pkt function to |  mvs | 2020-12-30 | 1 | -5/+6 |
* | Start documenting locks for struct pppoe_softc members |  kn | 2020-09-13 | 1 | -20/+26 |
* | Leave default ifq_maxlen handling to ifq_init() |  kn | 2020-08-21 | 1 | -2/+1 |
* | Add sizes to free(9) calls |  kn | 2020-08-21 | 1 | -14/+21 |
* | Add missing `IFXF_CLONED' flag to clone interfaces. |  mvs | 2020-07-28 | 1 | -1/+2 |
* | Change users of IFQ_SET_MAXLEN() and IFQ_IS_EMPTY() to use the "new" API. |  patrick | 2020-07-10 | 1 | -2/+2 |
* | Use timeout_add_sec(9) |  kn | 2019-06-16 | 1 | -9/+9 |
* | Remove almost unused `flags' argument of suser(). |  mpi | 2018-02-19 | 1 | -2/+2 |
* | Creating a cloned interface could return ENOMEM due to temporary |  bluhm | 2018-01-09 | 1 | -5/+2 |
* | If you use sys/param.h, you don't need sys/types.h |  deraadt | 2017-09-08 | 1 | -2/+1 |
* | Remove NET_LOCK()'s argument. |  mpi | 2017-08-11 | 1 | -10/+8 |
* | Fix double free in pppoe_dispatch_disc_pkt(). If m_pulldown() fails m is |  claudio | 2017-07-19 | 1 | -2/+4 |
* | Protect the global list of softc with the NET_LOCK(). |  mpi | 2017-05-27 | 1 | -10/+7 |
* | Replace remaining splsoftassert(IPL_SOFTNET) by NET_ASSERT_LOCKED(). |  mpi | 2017-05-16 | 1 | -2/+2 |
* | move counting if_opackets next to counting if_obytes in if_enqueue. |  dlg | 2017-01-22 | 1 | -2/+1 |
* | spacing |  mpi | 2017-01-02 | 1 | -23/+23 |
* | pppoe_timeout() needs to take the NET_LOCK(). |  mpi | 2017-01-02 | 1 | -6/+10 |
* | Don't hardcode vlan/queue priority for pppoe packets; inherit it from the |  sthen | 2016-06-14 | 1 | -8/+9 |
* | Set pppoe(4) control frames to high (NC, "network control") |  sthen | 2016-05-30 | 1 | -1/+4 |
* | Remove the hack that prevents changing pppoe params at runtime. |  mikeb | 2016-04-18 | 1 | -3/+30 |
* | We're always ready! So send IFQ_SET_READY() to the bitbucket. |  mpi | 2016-04-13 | 1 | -2/+1 |
* | Building kernels with PPPOE_SERVER enabled has been broken for at least |  jsg | 2016-04-01 | 1 | -197/+1 |
* | remove old lint annotations |  tedu | 2015-12-05 | 1 | -2/+1 |
* | Convert pppoe(4) to use if_get()/if_put(): instead of storing a |  reyk | 2015-11-28 | 1 | -24/+50 |
* | sppp(4) is now only used for pppoe(4) which doesn't use framing, so remove |  sthen | 2015-11-20 | 1 | -3/+2 |
* | Introduce if_rtrequest() the successor of ifa_rtrequest(). |  mpi | 2015-10-25 | 1 | -1/+2 |
* | There's no point in abstracting ifp->if_output() as long as pf_test() |  mpi | 2015-09-13 | 1 | -3/+3 |
* | Stop overwriting the rt_ifp pointer of RTF_LOCAL routes with lo0ifp. |  mpi | 2015-09-12 | 1 | -3/+3 |
* | Store a unique ID, an interface index, rather than a pointer to the |  mpi | 2015-06-16 | 1 | -12/+12 |
* | replace the use of ifqueues for most input queues serviced by netisr |  dlg | 2015-04-10 | 1 | -22/+7 |
* | Remove some includes include-what-you-use claims don't |  jsg | 2015-03-14 | 1 | -2/+1 |
* | Explicitly include <net/if_var.h> instead of pulling it in <net/if.h>. |  mpi | 2014-12-05 | 1 | -1/+2 |
* | move arc4random prototype to systm.h. more appropriate for most code |  tedu | 2014-11-18 | 1 | -4/+1 |
* | Correctly set the rtable ID of the packet header when sending |  mpi | 2014-08-13 | 1 | -1/+4 |
* | add a size argument to free. will be used soon, but for now default to 0. |  tedu | 2014-07-12 | 1 | -17/+17 |
* | g/c unused IFT_L2VLAN, ok reyk bluhm |  henning | 2014-06-07 | 1 | -4/+2 |
* | "struct pkthdr" holds a routing table ID, not a routing domain one. |  mpi | 2014-04-14 | 1 | -2/+2 |
* | Remove various external variable declaration from sources files and |  mpi | 2013-04-10 | 1 | -3/+1 |
* | no need for a lot of code to include proc.h |  tedu | 2013-03-28 | 1 | -2/+1 |
* | fix all the suser calls which pass an incorrect p_acflag argument; |  mikeb | 2012-04-11 | 1 | -3/+3 |
* | Teach pppoe(4) about RFC 4638. This allows negotiating increased MTU with |  sthen | 2012-01-19 | 1 | -8/+48 |
* | cosnistently use IFQ_SET_MAXLEN, surfaced in a discussion with + ok bluhm |  henning | 2011-07-06 | 1 | -3/+3 |
* | ifqueues in BSS don't need NULL init, especially not absolutely incorrect |  henning | 2011-07-05 | 1 | -3/+3 |
* | Do the same rdomain checking in sppp as we do in the Ethernet case. |  claudio | 2009-07-13 | 1 | -1/+4 |
* | Introduce splsoftassert(), similar to splassert() but for soft interrupt |  miod | 2009-03-15 | 1 | -2/+2 |
* | Make the session id unique per receiving interface so that pppoe |  canacar | 2008-10-16 | 1 | -6/+4 |
* | Make sure no two pppoe devices share the same sc_unique identifier. While |  miod | 2008-10-11 | 1 | -9/+14 |