diff options
author | brian <brian@FreeBSD.org> | 1998-08-25 17:48:43 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1998-08-25 17:48:43 +0000 |
commit | e47c43b4fc04ac586c00fa902e1254320b31cb4b (patch) | |
tree | e5dec176973c974e87e8b659a8cabdde99bf251e /usr.sbin/ppp/link.h | |
parent | 9279ee9f4d30bff6857515dc6086e5314cfb6878 (diff) | |
download | FreeBSD-src-e47c43b4fc04ac586c00fa902e1254320b31cb4b.zip FreeBSD-src-e47c43b4fc04ac586c00fa902e1254320b31cb4b.tar.gz |
If we've got a full output buffer queue and cannot send
anything for two mintues (see ``set choked'' and ``show
bundle''), nuke the ip, mp and link level buffer queues.
This should fix problems where ``ppp -auto'' seems to stop
responding after failing to connect to the peer a few times.
Diffstat (limited to 'usr.sbin/ppp/link.h')
-rw-r--r-- | usr.sbin/ppp/link.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ppp/link.h b/usr.sbin/ppp/link.h index b03c292..6a3858b 100644 --- a/usr.sbin/ppp/link.h +++ b/usr.sbin/ppp/link.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: link.h,v 1.2 1998/05/21 21:46:14 brian Exp $ + * $Id: link.h,v 1.3 1998/05/23 17:05:27 brian Exp $ * */ @@ -55,6 +55,7 @@ extern void link_AddInOctets(struct link *, int); extern void link_AddOutOctets(struct link *, int); extern void link_SequenceQueue(struct link *); +extern void link_DeleteQueue(struct link *); extern int link_QueueLen(struct link *); extern int link_QueueBytes(struct link *); extern struct mbuf *link_Dequeue(struct link *); |