Lines Matching +full:application +full:- +full:notes
7 - Introduction
8 - Missing features
9 - Socket options
10 - Sysctl variables
11 - IOCTLs
12 - Other tunables
13 - Notes
20 for real-time and multimedia (streaming) traffic.
24 implementation, this is the TCP-like CCID2 (RFC 4341). Additional CCIDs, such as
25 the TCP-friendly CCID3 (RFC 4342), are optional.
32 is at http://www.ietf.org/html.charters/dccp-charter.html
43 For more up-to-date versions of the DCCP implementation, please consider using
54 and a priority-based variant (DCCPQ_POLICY_PRIO). The latter allows to pass an
58 cmsg->cmsg_level = SOL_DCCP;
59 cmsg->cmsg_type = DCCP_SCM_PRIORITY;
60 cmsg->cmsg_len = CMSG_LEN(sizeof(uint32_t)); /* or CMSG_LEN(4) */
67 lowest-priority packet first. The default value for this parameter is
78 DCCP_SOCKOPT_GET_CUR_MPS is read-only and retrieves the current maximum packet
79 size (application payload size) in bytes, see RFC 4340, section 14.
81 DCCP_SOCKOPT_AVAILABLE_CCIDS is also read-only and returns the list of CCIDs
85 built-in CCIDs.
87 DCCP_SOCKOPT_CCID is write-only and sets both the TX and RX CCIDs at the same
109 always cover the entire packet and that only fully covered application data is
124 The following two options apply to CCID 3 exclusively and are getsockopt()-only.
133 On unidirectional connections it is useful to close the unused half-connection
134 via shutdown (SHUT_WR or SHUT_RD): this will reduce per-packet processing costs.
161 Default CCID for the sender-receiver half-connection. Depending on the
165 Default CCID for the receiver-sender half-connection; see tx_ccid.
170 Values in the range Wmin = 32 (RFC 4340, 7.5.2) up to 2^32-1 can be set.
177 The timeout between subsequent DCCP-Sync packets sent in response to
178 sequence-invalid packets on the same socket (RFC 4340, 7.5.4). The unit
179 of this parameter is milliseconds; a value of 0 disables rate-limiting.
191 Per-route rto_min support
192 CCID-2 supports the RTAX_RTO_MIN per-route setting for the minimum value
198 CCID-3 also supports the rto_min setting: it is used to define the lower
203 Notes
206 because the checksum covers the pseudo-header as per TCP and UDP. Linux NAT