summaryrefslogtreecommitdiffstats
path: root/sys/net/if_spppsubr.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Add sizes to free() callskn2020-09-121-9/+15
* Add sizes to free() callskn2020-08-221-21/+23
* Zap LOOPALIVECNTkn2020-08-141-2/+1
* Change users of IFQ_SET_MAXLEN() and IFQ_IS_EMPTY() to use the "new" API.patrick2020-07-101-3/+3
* Change users of IFQ_PURGE() 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
* Non root users must not set the parameters of pppoe(4) interfaces.bluhm2019-11-131-1/+3
* convert interface address change hooks to tasks and a task_list.dlg2019-11-081-3/+3
* Use timeout_add_sec(9)kn2019-06-241-4/+4
* Make computation of re-challenge timeout more obviouskn2019-06-221-2/+2
* Revert accidentially committed hunk from previouskn2019-06-221-2/+2
* Remove duplicate initialisationkn2019-06-221-3/+2
* Prevent recursions by not deleting entries inside rtable_walk(9).mpi2019-06-211-2/+2
* Remove almost unused `flags' argument of suser().mpi2018-02-191-2/+2
* Kill dead ioctl handlers.mpi2017-10-201-7/+1
* After we stopped processing router advertisements in the kernelflorian2017-08-151-3/+3
* Use the rv variable in sppp_output() as it was intended.reyk2017-08-141-2/+2
* Remove NET_LOCK()'s argument.mpi2017-08-111-13/+11
* space after if.reyk2017-08-111-3/+3
* Revision 1.139 accidentally removed an ip = mtod(), resulting in areyk2017-08-111-1/+4
* The timeval in sppp_input() is also used when the interface is not IFF_UP.reyk2017-08-111-2/+3
* Add missing splx().mpi2017-08-011-1/+3
* In sppp(4), allow additional 'wildcard' addresses for the destination.stsp2017-06-161-2/+2
* Introduce ipv{4,6}_input(), two wrappers around IP queues.mpi2017-05-301-17/+10
* Avoid some false positives with cppcheck. No binary change.bluhm2017-04-141-2/+2
* A space here, a space there. Soon we're talking real whitespacekrw2017-01-241-5/+5
* remove some extra whitespace.dlg2017-01-211-15/+15
* No need to handle SIOCAIFADDR in drivers, it's never passed down tompi2017-01-201-2/+1
* When if_down() is called, sppp_keepalive() needs a NET_LOCK().bluhm2017-01-081-3/+5
* Grab the NET_LOCK() when setting an IPv6 address, just like it is donempi2017-01-021-11/+10
* Introduce the NET_LOCK() a rwlock used to serialize accesses to the partsmpi2016-12-191-8/+8
* if_link_state_change() doesn't need to be called under splsoftnet(),mpi2016-11-161-4/+2
* Path MTU discovery was slightly broken. I took two ICMP packetsbluhm2016-07-111-2/+2
* Don't hardcode vlan/queue priority for pppoe packets; inherit it from thesthen2016-06-141-3/+3
* Set pppoe(4) control frames to high (NC, "network control")sthen2016-05-301-1/+3
* Simplify life for routing table implementations by requiring that rtable_walkjmatthew2016-05-021-4/+2
* Remove a bogus "else" that was causing breakage with LCP echoes,sthen2016-05-011-2/+2
* Remove the hack that prevents changing pppoe params at runtime.mikeb2016-04-181-15/+2
* if_start needs splnet. help/ok dlg@sthen2015-11-231-2/+7
* sppp(4) is now only used for pppoe(4) which doesn't use framing, so removesthen2015-11-201-104/+27
* avoid a use after enqueue, which is like a use after free.dlg2015-11-201-13/+15
* replace the ifqueue used for the pp_cpq with an mbuf_queue.dlg2015-11-111-27/+10
* Rewrite rtalloc(9) to consider RTF_GATEWAY entries without valid next-mpi2015-11-091-4/+3
* sppp_pick is unused, it can go away.dlg2015-11-021-21/+1
* Introduce if_rtrequest() the successor of ifa_rtrequest().mpi2015-10-251-3/+1
* Some rt_ifp to rt_ifidx conversions.mpi2015-10-241-2/+2
* Revert if_oqdrops accounting changes done in kernel, per request from mpi@.uebayasi2015-10-051-1/+3
* Don't count IF_DROP()'ed packets as if_oerrors too.uebayasi2015-10-051-3/+1
* Remove remnants of sppp's special queue handling for telnet/rlogin/ftp,sthen2015-09-301-16/+2
* remove cisco hdlc code from sppp(4), it's no longer used - pppoe(4) only usessthen2015-09-301-278/+49