aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/networking/dccp.txt41
1 files changed, 41 insertions, 0 deletions
diff --git a/Documentation/networking/dccp.txt b/Documentation/networking/dccp.txt
index a8142a81038a..c2328c862e98 100644
--- a/Documentation/networking/dccp.txt
+++ b/Documentation/networking/dccp.txt
@@ -63,6 +63,47 @@ DCCP_SOCKOPT_SEND_CSCOV is for the receiver and has a different meaning: it
63 coverage value are also acceptable. The higher the number, the more 63 coverage value are also acceptable. The higher the number, the more
64 restrictive this setting (see [RFC 4340, sec. 9.2.1]). 64 restrictive this setting (see [RFC 4340, sec. 9.2.1]).
65 65
66Sysctl variables
67================
68Several DCCP default parameters can be managed by the following sysctls
69(sysctl net.dccp.default or /proc/sys/net/dccp/default):
70
71request_retries
72 The number of active connection initiation retries (the number of
73 Requests minus one) before timing out. In addition, it also governs
74 the behaviour of the other, passive side: this variable also sets
75 the number of times DCCP repeats sending a Response when the initial
76 handshake does not progress from RESPOND to OPEN (i.e. when no Ack
77 is received after the initial Request). This value should be greater
78 than 0, suggested is less than 10. Analogue of tcp_syn_retries.
79
80retries1
81 How often a DCCP Response is retransmitted until the listening DCCP
82 side considers its connecting peer dead. Analogue of tcp_retries1.
83
84retries2
85 The number of times a general DCCP packet is retransmitted. This has
86 importance for retransmitted acknowledgments and feature negotiation,
87 data packets are never retransmitted. Analogue of tcp_retries2.
88
89send_ndp = 1
90 Whether or not to send NDP count options (sec. 7.7.2).
91
92send_ackvec = 1
93 Whether or not to send Ack Vector options (sec. 11.5).
94
95ack_ratio = 2
96 The default Ack Ratio (sec. 11.3) to use.
97
98tx_ccid = 2
99 Default CCID for the sender-receiver half-connection.
100
101rx_ccid = 2
102 Default CCID for the receiver-sender half-connection.
103
104seq_window = 100
105 The initial sequence window (sec. 7.5.2).
106
66Notes 107Notes
67===== 108=====
68 109