From owner-cvs-usrsbin Sun Aug 11 10:29:51 1996 Return-Path: owner-cvs-usrsbin Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id KAA27163 for cvs-usrsbin-outgoing; Sun, 11 Aug 1996 10:29:51 -0700 (PDT) Received: (from pst@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id KAA27133; Sun, 11 Aug 1996 10:29:40 -0700 (PDT) Date: Sun, 11 Aug 1996 10:29:40 -0700 (PDT) From: Paul Traina Message-Id: <199608111729.KAA27133@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pppd main.c options.c pppd.8 pppd.h Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk pst 96/08/11 10:29:40 Modified: usr.sbin/pppd main.c options.c pppd.8 pppd.h Log: Previously, if the dial script had any problems, pppd would simply bomb out. Unfortunately, FreeBSD's sio driver and certain internal modems don't get along very well, which can cause the serial port to wedge until it is closed and reopened. Add new variable, connect-max-attempts, default = 1 (to mimic previous behavior). If > 1, will try up to "n" times to dial remote site before aborting. Revision Changes Path 1.6 +11 -2 src/usr.sbin/pppd/main.c 1.10 +10 -1 src/usr.sbin/pppd/options.c 1.7 +6 -1 src/usr.sbin/pppd/pppd.8 1.6 +2 -1 src/usr.sbin/pppd/pppd.h