The PPP Daemon is the userland part of the Point-to-Point Protocol. It works in combination with a dedicated kernel network interface usually named ppp. PPP is a very extensible protocol and pppd supports a large number of options, including compression (through various algorithms), cryptography (Microsoft's MPPE) and authentication (PAP, CHAP, Microsoft CHAP), provided the kernel has the relevant back-ends in some cases.
13 lines
496 B
Text
13 lines
496 B
Text
$NetBSD: patch-ap,v 1.1.1.1 2005/01/02 02:51:42 cube Exp $
|
|
|
|
--- pppd/fsm.c.orig 2004-11-13 03:28:15.000000000 +0100
|
|
+++ pppd/fsm.c
|
|
@@ -306,7 +306,7 @@ fsm_timeout(arg)
|
|
case ACKRCVD:
|
|
case ACKSENT:
|
|
if (f->retransmits <= 0) {
|
|
- warn("%s: timeout sending Config-Requests\n", PROTO_NAME(f));
|
|
+ warn("%s: timeout sending Config-Requests", PROTO_NAME(f));
|
|
f->state = STOPPED;
|
|
if( (f->flags & OPT_PASSIVE) == 0 && f->callbacks->finished )
|
|
(*f->callbacks->finished)(f);
|