aboutsummaryrefslogtreecommitdiff
path: root/sys/net/if_spppsubr.c
Commit message (Expand)AuthorAgeFilesLines
* Split rtinit() into multiple functions.Alexander V. Chernikov2021-01-161-3/+7
* net: clean up empty lines in .c and .h filesMateusz Guzik2020-09-011-11/+3
* Don't use if_maddr_rlock() in sppp(4), use epoch(9) directly instead.Gleb Smirnoff2019-10-101-8/+12
* Callout drain does not have to be followed by a callout stop call.Hans Petter Selasky2019-09-101-6/+4
* ppp: correct echo-req magic number on big endian archsEd Maste2019-08-011-1/+1
* Replace read_random(9) with more appropriate arc4rand(9) KPIsConrad Meyer2019-04-041-6/+2
* ifnet: Replace if_addr_lock rwlock with epoch + mutexMatt Macy2018-05-181-4/+4
* Use an accessor function to access ifr_data.Brooks Davis2018-03-301-5/+5
* sys/net*: minor spelling fixes.Pedro F. Giffuni2016-05-031-2/+2
* sys/net* : for pointers replace 0 with NULL.Pedro F. Giffuni2016-04-151-3/+3
* Convert in_ifaddr_lock and in6_ifaddr_lock to rmlock.Andrey V. Elsukov2015-07-291-0/+2
* CALLOUT_MPSAFE has lost its meaning since r141428, i.e., for more than tenJung-uk Kim2015-05-221-8/+8
* Replace some calls to fuword() by fueword() with proper error checking.Konstantin Belousov2014-10-281-1/+2
* Mechanically convert to if_inc_counter().Gleb Smirnoff2014-09-191-24/+24
* Deprecate m_act. Use m_nextpkt always.Kevin Lo2014-07-171-1/+1
* Remove IPX support.Gleb Smirnoff2014-03-141-26/+0
* The r48589 promised to remove implicit inclusion of if_var.h soon. PrepareGleb Smirnoff2013-10-261-0/+1
* Clean up SIOCSIFDSTADDR usage from ifnet drivers. The ioctl itself isGleb Smirnoff2013-09-111-1/+0
* Correct a few sizeof()sEitan Adler2013-05-011-1/+1
* Add const qualifier to the dst parameter of the ifnet if_output method.Gleb Smirnoff2013-04-261-3/+3
* Mechanically substitute flags from historic mbuf allocator withGleb Smirnoff2012-12-051-5/+5
* Mechanically remove the last stray remains of spl* calls from net*/*.Andre Oppermann2012-10-181-53/+8
* Revert previous commit...Kevin Lo2012-10-101-1/+1
* Prefer NULL over 0 for pointersKevin Lo2012-10-091-1/+1
* Mark MALLOC_DEFINEs static that have no corresponding MALLOC_DECLAREs.Ed Schouten2011-11-071-1/+1
* Tag mbufs of all incoming frames or packets with the interface's FIBBjoern A. Zeeb2011-07-031-0/+1
* Merge the remainder of kern_vimage.c and vimage.h into vnet.c andRobert Watson2009-08-011-1/+1
* Build on Jeff Roberson's linker-set based dynamic per-CPU allocatorRobert Watson2009-07-141-2/+0
* Use if_addr_rlock/if_addr_runlock for if_spp when iterating if_addrhead,Robert Watson2009-06-261-8/+8
* Add a new global rwlock, in_ifaddr_lock, which will synchronize use of theRobert Watson2009-06-251-0/+2
* Lock if_addrhead when iterating, and where necessary acquire and releaseRobert Watson2009-06-241-21/+27
* Change if_output to take a struct route as its fourth argument in orderKip Macy2009-04-161-2/+2
* Add parentheses to under-parenthesized macro.Ed Schouten2009-04-071-1/+1
* IFF_NEEDSGIANT will no longer be supported, so remove compatibility codeRobert Watson2009-02-161-35/+12
* Rather than using hidden includes (with cicular dependencies),Bjoern A. Zeeb2008-12-021-0/+1
* Make compile without INET.Bjoern A. Zeeb2008-11-051-2/+89
* Step 1.5 of importing the network stack virtualization infrastructureMarko Zec2008-10-021-0/+1
* MFp4:Warner Losh2008-08-241-106/+2
* Commit step 1 of the vimage project, (network stack)Bjoern A. Zeeb2008-08-171-0/+1
* Cast the ioctl define to the type of the variable being switched on.Matt Jacob2007-06-101-2/+2
* MFp4: 92972, 98913 + one more changeBjoern A. Zeeb2006-12-121-6/+10
* Correct buffer overflow in the handling of LCP options in ppp(4)Colin Percival2006-08-231-12/+24
* Use TAILQ_FOREACH instead of poking around in the guts of the listBrooks Davis2006-07-151-8/+5
* Fix -Wundef from compiling the amd64 LINT.Ruslan Ermilov2005-12-041-1/+1
* Use monotonic time_uptime instead of 'time_second' as timebaseAndre Oppermann2005-09-191-3/+3
* Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE andRobert Watson2005-08-091-16/+18
* scope cleanup. with this changeHajimu UMEMOTO2005-07-251-2/+6
* Stop embedding struct ifnet at the top of driver softcs. Instead theBrooks Davis2005-06-101-44/+71
* /* -> /*- for license, minor formatting changesWarner Losh2005-01-071-1/+2
* Add FR support to sppp (MFCronyx).Roman Kurakin2004-12-281-12/+38