diff options
author | archie <archie@FreeBSD.org> | 2001-12-07 02:50:39 +0000 |
---|---|---|
committer | archie <archie@FreeBSD.org> | 2001-12-07 02:50:39 +0000 |
commit | a1965daf2e3da4e8b2b911157dceb42d0fee9465 (patch) | |
tree | bbf6f0c51c923212bda231a40705fb1ba9a545fc /share | |
parent | bacdbb04c9c33716b4638960c5993fb0f63c015d (diff) | |
download | FreeBSD-src-a1965daf2e3da4e8b2b911157dceb42d0fee9465.zip FreeBSD-src-a1965daf2e3da4e8b2b911157dceb42d0fee9465.tar.gz |
Document the 'enableAlwaysAck' field in the config structure.
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man4/ng_pptpgre.4 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/share/man/man4/ng_pptpgre.4 b/share/man/man4/ng_pptpgre.4 index bcf3b43..b3ee774 100644 --- a/share/man/man4/ng_pptpgre.4 +++ b/share/man/man4/ng_pptpgre.4 @@ -89,6 +89,7 @@ as an argument: struct ng_pptpgre_conf { u_char enabled; /* enables traffic flow */ u_char enableDelayedAck; /* enables delayed acks */ + u_char enableAlwaysAck; /* always send ack with data */ u_int16_t cid; /* my call id */ u_int16_t peerCid; /* peer call id */ u_int16_t recvWin; /* peer recv window size */ @@ -103,6 +104,9 @@ field enables traffic flow through the node. The .Dv enableDelayedAck field enables delayed acknowledgement (maximum 250 miliseconds), which is a useful optimization and should generally be turned on. +.Dv enableAlwaysAck +field enables sending acknowledgements with every data packet, which +is probably helpful as well. The remaining fields are as supplied by the PPTP virtual call setup process. .It Dv NGM_PPTPGRE_GET_CONFIG Returns the current configuration as a |