]> bbs.cooldavid.org Git - net-next-2.6.git/blame - Documentation/networking/dccp.txt
[DCCP]: Adds the tx buffer sysctls
[net-next-2.6.git] / Documentation / networking / dccp.txt
CommitLineData
98069ff4
IM
1DCCP protocol
2============
3
98069ff4
IM
4
5Contents
6========
7
8- Introduction
9- Missing features
10- Socket options
11- Notes
12
13Introduction
14============
15
16Datagram Congestion Control Protocol (DCCP) is an unreliable, connection
17based protocol designed to solve issues present in UDP and TCP particularly
18for real time and multimedia traffic.
19
20It has a base protocol and pluggable congestion control IDs (CCIDs).
21
ddfe10b8
IM
22It is at experimental RFC status and the homepage for DCCP as a protocol is at:
23 http://www.read.cs.ucla.edu/dccp/
98069ff4
IM
24
25Missing features
26================
27
28The DCCP implementation does not currently have all the features that are in
ddfe10b8 29the RFC.
98069ff4 30
ddfe10b8
IM
31The known bugs are at:
32 http://linux-net.osdl.org/index.php/TODO#DCCP
98069ff4
IM
33
34Socket options
35==============
36
37DCCP_SOCKOPT_PACKET_SIZE is used for CCID3 to set default packet size for
38calculations.
39
00e4d116
GR
40DCCP_SOCKOPT_SERVICE sets the service. The specification mandates use of
41service codes (RFC 4340, sec. 8.1.2); if this socket option is not set,
42the socket will fall back to 0 (which means that no meaningful service code
43is present). Connecting sockets set at most one service option; for
44listening sockets, multiple service codes can be specified.
98069ff4 45
6f4e5fff
GR
46DCCP_SOCKOPT_SEND_CSCOV and DCCP_SOCKOPT_RECV_CSCOV are used for setting the
47partial checksum coverage (RFC 4340, sec. 9.2). The default is that checksums
48always cover the entire packet and that only fully covered application data is
49accepted by the receiver. Hence, when using this feature on the sender, it must
50be enabled at the receiver, too with suitable choice of CsCov.
51
52DCCP_SOCKOPT_SEND_CSCOV sets the sender checksum coverage. Values in the
53 range 0..15 are acceptable. The default setting is 0 (full coverage),
54 values between 1..15 indicate partial coverage.
55DCCP_SOCKOPT_SEND_CSCOV is for the receiver and has a different meaning: it
56 sets a threshold, where again values 0..15 are acceptable. The default
57 of 0 means that all packets with a partial coverage will be discarded.
58 Values in the range 1..15 indicate that packets with minimally such a
59 coverage value are also acceptable. The higher the number, the more
60 restrictive this setting (see [RFC 4340, sec. 9.2.1]).
61
2e2e9e92
GR
62Sysctl variables
63================
64Several DCCP default parameters can be managed by the following sysctls
65(sysctl net.dccp.default or /proc/sys/net/dccp/default):
66
67request_retries
68 The number of active connection initiation retries (the number of
69 Requests minus one) before timing out. In addition, it also governs
70 the behaviour of the other, passive side: this variable also sets
71 the number of times DCCP repeats sending a Response when the initial
72 handshake does not progress from RESPOND to OPEN (i.e. when no Ack
73 is received after the initial Request). This value should be greater
74 than 0, suggested is less than 10. Analogue of tcp_syn_retries.
75
76retries1
77 How often a DCCP Response is retransmitted until the listening DCCP
78 side considers its connecting peer dead. Analogue of tcp_retries1.
79
80retries2
81 The number of times a general DCCP packet is retransmitted. This has
82 importance for retransmitted acknowledgments and feature negotiation,
83 data packets are never retransmitted. Analogue of tcp_retries2.
84
85send_ndp = 1
86 Whether or not to send NDP count options (sec. 7.7.2).
87
88send_ackvec = 1
89 Whether or not to send Ack Vector options (sec. 11.5).
90
91ack_ratio = 2
92 The default Ack Ratio (sec. 11.3) to use.
93
94tx_ccid = 2
95 Default CCID for the sender-receiver half-connection.
96
97rx_ccid = 2
98 Default CCID for the receiver-sender half-connection.
99
100seq_window = 100
101 The initial sequence window (sec. 7.5.2).
102
82e3ab9d
IM
103tx_qlen = 5
104 The size of the transmit buffer in packets. A value of 0 corresponds
105 to an unbounded transmit buffer.
106
98069ff4
IM
107Notes
108=====
109
ddfe10b8
IM
110DCCP does not travel through NAT successfully at present on many boxes. This is
111because the checksum covers the psuedo-header as per TCP and UDP. Linux NAT
112support for DCCP has been added.