]> bbs.cooldavid.org Git - net-next-2.6.git/blame - Documentation/networking/dccp.txt
[DCCP]: Support for partial checksums (RFC 4340, sec. 9.2)
[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
22It is at draft RFC status and the homepage for DCCP as a protocol is at:
23 http://www.icir.org/kohler/dcp/
24
25Missing features
26================
27
28The DCCP implementation does not currently have all the features that are in
29the draft RFC.
30
31In particular the following are missing:
32- CCID2 support
33- feature negotiation
34
35When testing against other implementations it appears that elapsed time
36options are not coded compliant to the specification.
37
38Socket options
39==============
40
41DCCP_SOCKOPT_PACKET_SIZE is used for CCID3 to set default packet size for
42calculations.
43
00e4d116
GR
44DCCP_SOCKOPT_SERVICE sets the service. The specification mandates use of
45service codes (RFC 4340, sec. 8.1.2); if this socket option is not set,
46the socket will fall back to 0 (which means that no meaningful service code
47is present). Connecting sockets set at most one service option; for
48listening sockets, multiple service codes can be specified.
98069ff4 49
6f4e5fff
GR
50DCCP_SOCKOPT_SEND_CSCOV and DCCP_SOCKOPT_RECV_CSCOV are used for setting the
51partial checksum coverage (RFC 4340, sec. 9.2). The default is that checksums
52always cover the entire packet and that only fully covered application data is
53accepted by the receiver. Hence, when using this feature on the sender, it must
54be enabled at the receiver, too with suitable choice of CsCov.
55
56DCCP_SOCKOPT_SEND_CSCOV sets the sender checksum coverage. Values in the
57 range 0..15 are acceptable. The default setting is 0 (full coverage),
58 values between 1..15 indicate partial coverage.
59DCCP_SOCKOPT_SEND_CSCOV is for the receiver and has a different meaning: it
60 sets a threshold, where again values 0..15 are acceptable. The default
61 of 0 means that all packets with a partial coverage will be discarded.
62 Values in the range 1..15 indicate that packets with minimally such a
63 coverage value are also acceptable. The higher the number, the more
64 restrictive this setting (see [RFC 4340, sec. 9.2.1]).
65
98069ff4
IM
66Notes
67=====
68
69SELinux does not yet have support for DCCP. You will need to turn it off or
70else you will get EACCES.
71
72DCCP does not travel through NAT successfully at present. This is because
73the checksum covers the psuedo-header as per TCP and UDP. It should be
74relatively trivial to add Linux NAT support for DCCP.