summaryrefslogtreecommitdiffstats
path: root/sys/net/if_pppoe.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* replace the use of ifqueues for most input queues serviced by netisrdlg2015-04-101-3/+3
| | | | | | | | | | | | | | | | | with niqueues. this change is so big because there's a lot of code that takes pointers to different input queues (eg, ether_input picks between ipv4, ipv6, pppoe, arp, and mpls input queues) and falls through to code to enqueue packets against the pointer. if i changed only one of the input queues id have to add sepearate code paths, one for ifqueues and one for niqueues in each of these places by flipping all these input queues at once i can keep the currently common code common. testing by mpi@ sthen@ and rafael zalamena ok mpi@ sthen@ claudio@ henning@
* Fix a typo in the naming of the PPPoE input queues, ppoe -> pppoe.brad2008-08-281-3/+3
| | | | ok canacar@
* First pass at removing clauses 3 and 4 from NetBSD licenses.ray2008-06-261-8/+1
| | | | | | | | | Not sure what's more surprising: how long it took for NetBSD to catch up to the rest of the BSDs (including UCB), or the amount of code that NetBSD has claimed for itself without attributing to the actual authors. OK deraadt@
* missing $OpenBSDmarkus2004-11-301-1/+2
|
* put text after #endif in comment (compile w/ gcc3)pvalchev2004-11-291-2/+2
|
* In kernel pppoe client, a simple IPv4 only implementation.canacar2004-11-281-0/+81
Initial porting from NetBSD by David Berghoff. Modified/simplified to match our sppp implementation. ok deraadt@