From owner-cvs-all Mon Jul 24 17:23:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B63FE37B51A; Mon, 24 Jul 2000 17:23:20 -0700 (PDT) (envelope-from archie@FreeBSD.org) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA30444; Mon, 24 Jul 2000 17:23:20 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200007250023.RAA30444@freefall.freebsd.org> From: Archie Cobbs Date: Mon, 24 Jul 2000 17:23:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_pptpgre.c ng_pptpgre.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/07/24 17:23:20 PDT Modified files: sys/netgraph ng_pptpgre.c ng_pptpgre.h Log: Several fixes: - Fix slowness when operating over fast connections, where the timeout(9) granularity is on the same order of magnitude as the round trip time. timeout(9) can happen up to 1 tick early, which was causing receive ack timeouts to happen too early, causing bogus "lost" packets. - Increase the local time counter to 64 bits to avoid roll-over. - Keep statistics on memory allocation failures. - Add a new option to always include the ack when sending data packets. Might be useful in high packet loss situations. Might not. Revision Changes Path 1.8 +55 -26 src/sys/netgraph/ng_pptpgre.c 1.3 +6 -2 src/sys/netgraph/ng_pptpgre.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message