summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ppp/lqr.h
diff options
context:
space:
mode:
authordfr <dfr@FreeBSD.org>1996-01-30 11:08:50 +0000
committerdfr <dfr@FreeBSD.org>1996-01-30 11:08:50 +0000
commit9b03b51375fbd478d56013fc1ed71225a8e90176 (patch)
treed62d7ad9c96e7d604dc6e27cd8519049718a6def /usr.sbin/ppp/lqr.h
parentb2ad84f5ce4ebeb44b8e31628cc9c8040c1a2a29 (diff)
downloadFreeBSD-src-9b03b51375fbd478d56013fc1ed71225a8e90176.zip
FreeBSD-src-9b03b51375fbd478d56013fc1ed71225a8e90176.tar.gz
Some patches to ppp which improve stability. I have been running a
ppp based on these patches for about 3 weeks with no downtime. The original submitters comments: Two features iijppp has over kernel ppp that I like are predictor1 compression and demand dialing. Here are a few bug fixes. I expanded the priority queueing scheme and discovered it was broken due to the assignment at ip.c line 300. All packets were being queued at the same priority. Fixing priority queueing broke predictor1 compression. Packets were compressed before being queued and predictor1 worked as long as the packets were popped off the queue in the same order they were pushed onto the queue. There were a few byte order problems in IP header tests also. There is a recursion problem in SendLqrReport(). LcpClose() is called when "Too many echo packets are lost" which winds up in SendLqrReport() again. I believe the original intention was to just stop the LQR timer with the call to StopLqr() but the side effects hurt. Submitted by: John Capo <jc@irbs.com>
Diffstat (limited to 'usr.sbin/ppp/lqr.h')
-rw-r--r--usr.sbin/ppp/lqr.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ppp/lqr.h b/usr.sbin/ppp/lqr.h
index f8ca555..30fe971 100644
--- a/usr.sbin/ppp/lqr.h
+++ b/usr.sbin/ppp/lqr.h
@@ -15,7 +15,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Id:$
+ * $Id: lqr.h,v 1.2 1995/02/26 12:17:40 amurai Exp $
*
* TODO:
*/
@@ -62,5 +62,6 @@ extern void LqrDump __P((char *, struct lqrdata *));
extern void LqrChangeOrder __P((struct lqrdata *, struct lqrdata *));
extern void StartLqm __P((void));
extern void StopLqr __P((int));
+extern void StopLqrTimer __P((void));
extern void RecvEchoLqr __P((struct mbuf *));
#endif
OpenPOWER on IntegriCloud