aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/ppp/acf.c
Commit message (Collapse)AuthorAgeFilesLines
* Make ppp WARNS=5 cleanBrian Somers2004-09-051-3/+4
| | | | Notes: svn path=/head/; revision=134789
* Re-implement LQM, this time according to the rfc.Brian Somers2004-06-301-2/+2
| | | | | | | | PR: 11293 MFC after: 4 weeks Notes: svn path=/head/; revision=131327
* Support link identification from rfc1570Brian Somers2000-07-191-1/+1
| | | | | | | Two new commands are available; ``ident'' and ``sendident''. Notes: svn path=/head/; revision=63484
* Cosmetic: Make struct mbuf more like kernel mbufs.Brian Somers1999-12-201-6/+6
| | | | Notes: svn path=/head/; revision=54912
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50479
* o Alter the mbuf type as it's processed by different layers.Brian Somers1999-06-021-2/+6
| | | | | | | | | | | o Show more information about missing MP fragments in ``show mp''. o Do away with mbuf_Log(). It was showing mbuf stats twice on receipt of LCP/CCP/IPCP packets.... ???!!? o Pre-allocate a bit extra when creating LQR packets to avoid having to allocate another mbuf in mbuf_Prepend(). Notes: svn path=/head/; revision=47695
* o Redesign the layering mechanism and make the aliasing code part ofBrian Somers1999-05-081-0/+111
the layering. We now ``stack'' layers as soon as we open the device (when we figure out what we're dealing with). A static set of `dispatch' routines are also declared for dealing with incoming packets after they've been `pulled' up through the stacked layers. Physical devices are now assigned handlers based on the device type when they're opened. For the moment there are three device types; ttys, execs and tcps. o Increment version number to 2.2 o Make an entry in [uw]tmp for non-tty -direct invocations (after pap/chap authentication). o Make throughput counters quad_t's o Account for the absolute number of mbuf malloc()s and free()s in ``show mem''. o ``show modem'' becomes ``show physical''. Notes: svn path=/head/; revision=46686