diff options
author | Gerrit Renker <gerrit@erg.abdn.ac.uk> | 2008-09-09 07:27:22 -0400 |
---|---|---|
committer | Gerrit Renker <gerrit@erg.abdn.ac.uk> | 2008-09-09 07:27:22 -0400 |
commit | 410e27a49bb98bc7fa3ff5fc05cc313817b9f253 (patch) | |
tree | 88bb1fcf84f9ebfa4299c9a8dcd9e6330b358446 /Documentation/networking | |
parent | 0a68a20cc3eafa73bb54097c28b921147d7d3685 (diff) |
This reverts "Merge branch 'dccp' of git://eden-feed.erg.abdn.ac.uk/dccp_exp"
as it accentally contained the wrong set of patches. These will be
submitted separately.
Signed-off-by: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Diffstat (limited to 'Documentation/networking')
-rw-r--r-- | Documentation/networking/dccp.txt | 54 |
1 files changed, 12 insertions, 42 deletions
diff --git a/Documentation/networking/dccp.txt b/Documentation/networking/dccp.txt index fcfc12534428..39131a3c78f8 100644 --- a/Documentation/networking/dccp.txt +++ b/Documentation/networking/dccp.txt | |||
@@ -45,25 +45,6 @@ http://linux-net.osdl.org/index.php/DCCP_Testing#Experimental_DCCP_source_tree | |||
45 | 45 | ||
46 | Socket options | 46 | Socket options |
47 | ============== | 47 | ============== |
48 | DCCP_SOCKOPT_QPOLICY_ID sets the dequeuing policy for outgoing packets. It takes | ||
49 | a policy ID as argument and can only be set before the connection (i.e. changes | ||
50 | during an established connection are not supported). Currently, two policies are | ||
51 | defined: the "simple" policy (DCCPQ_POLICY_SIMPLE), which does nothing special, | ||
52 | and a priority-based variant (DCCPQ_POLICY_PRIO). The latter allows to pass an | ||
53 | u32 priority value as ancillary data to sendmsg(), where higher numbers indicate | ||
54 | a higher packet priority (similar to SO_PRIORITY). This ancillary data needs to | ||
55 | be formatted using a cmsg(3) message header filled in as follows: | ||
56 | cmsg->cmsg_level = SOL_DCCP; | ||
57 | cmsg->cmsg_type = DCCP_SCM_PRIORITY; | ||
58 | cmsg->cmsg_len = CMSG_LEN(sizeof(uint32_t)); /* or CMSG_LEN(4) */ | ||
59 | |||
60 | DCCP_SOCKOPT_QPOLICY_TXQLEN sets the maximum length of the output queue. A zero | ||
61 | value is always interpreted as unbounded queue length. If different from zero, | ||
62 | the interpretation of this parameter depends on the current dequeuing policy | ||
63 | (see above): the "simple" policy will enforce a fixed queue size by returning | ||
64 | EAGAIN, whereas the "prio" policy enforces a fixed queue length by dropping the | ||
65 | lowest-priority packet first. The default value for this parameter is | ||
66 | initialised from /proc/sys/net/dccp/default/tx_qlen. | ||
67 | 48 | ||
68 | DCCP_SOCKOPT_SERVICE sets the service. The specification mandates use of | 49 | DCCP_SOCKOPT_SERVICE sets the service. The specification mandates use of |
69 | service codes (RFC 4340, sec. 8.1.2); if this socket option is not set, | 50 | service codes (RFC 4340, sec. 8.1.2); if this socket option is not set, |
@@ -76,24 +57,6 @@ can be set before calling bind(). | |||
76 | DCCP_SOCKOPT_GET_CUR_MPS is read-only and retrieves the current maximum packet | 57 | DCCP_SOCKOPT_GET_CUR_MPS is read-only and retrieves the current maximum packet |
77 | size (application payload size) in bytes, see RFC 4340, section 14. | 58 | size (application payload size) in bytes, see RFC 4340, section 14. |
78 | 59 | ||
79 | DCCP_SOCKOPT_AVAILABLE_CCIDS is also read-only and returns the list of CCIDs | ||
80 | supported by the endpoint (see include/linux/dccp.h for symbolic constants). | ||
81 | The caller needs to provide a sufficiently large (> 2) array of type uint8_t. | ||
82 | |||
83 | DCCP_SOCKOPT_CCID is write-only and sets both the TX and RX CCIDs at the same | ||
84 | time, combining the operation of the next two socket options. This option is | ||
85 | preferrable over the latter two, since often applications will use the same | ||
86 | type of CCID for both directions; and mixed use of CCIDs is not currently well | ||
87 | understood. This socket option takes as argument at least one uint8_t value, or | ||
88 | an array of uint8_t values, which must match available CCIDS (see above). CCIDs | ||
89 | must be registered on the socket before calling connect() or listen(). | ||
90 | |||
91 | DCCP_SOCKOPT_TX_CCID is read/write. It returns the current CCID (if set) or sets | ||
92 | the preference list for the TX CCID, using the same format as DCCP_SOCKOPT_CCID. | ||
93 | Please note that the getsockopt argument type here is `int', not uint8_t. | ||
94 | |||
95 | DCCP_SOCKOPT_RX_CCID is analogous to DCCP_SOCKOPT_TX_CCID, but for the RX CCID. | ||
96 | |||
97 | DCCP_SOCKOPT_SERVER_TIMEWAIT enables the server (listening socket) to hold | 60 | DCCP_SOCKOPT_SERVER_TIMEWAIT enables the server (listening socket) to hold |
98 | timewait state when closing the connection (RFC 4340, 8.3). The usual case is | 61 | timewait state when closing the connection (RFC 4340, 8.3). The usual case is |
99 | that the closing server sends a CloseReq, whereupon the client holds timewait | 62 | that the closing server sends a CloseReq, whereupon the client holds timewait |
@@ -152,16 +115,23 @@ retries2 | |||
152 | importance for retransmitted acknowledgments and feature negotiation, | 115 | importance for retransmitted acknowledgments and feature negotiation, |
153 | data packets are never retransmitted. Analogue of tcp_retries2. | 116 | data packets are never retransmitted. Analogue of tcp_retries2. |
154 | 117 | ||
118 | send_ndp = 1 | ||
119 | Whether or not to send NDP count options (sec. 7.7.2). | ||
120 | |||
121 | send_ackvec = 1 | ||
122 | Whether or not to send Ack Vector options (sec. 11.5). | ||
123 | |||
124 | ack_ratio = 2 | ||
125 | The default Ack Ratio (sec. 11.3) to use. | ||
126 | |||
155 | tx_ccid = 2 | 127 | tx_ccid = 2 |
156 | Default CCID for the sender-receiver half-connection. Depending on the | 128 | Default CCID for the sender-receiver half-connection. |
157 | choice of CCID, the Send Ack Vector feature is enabled automatically. | ||
158 | 129 | ||
159 | rx_ccid = 2 | 130 | rx_ccid = 2 |
160 | Default CCID for the receiver-sender half-connection; see tx_ccid. | 131 | Default CCID for the receiver-sender half-connection. |
161 | 132 | ||
162 | seq_window = 100 | 133 | seq_window = 100 |
163 | The initial sequence window (sec. 7.5.2) of the sender. This influences | 134 | The initial sequence window (sec. 7.5.2). |
164 | the local ackno validity and the remote seqno validity windows (7.5.1). | ||
165 | 135 | ||
166 | tx_qlen = 5 | 136 | tx_qlen = 5 |
167 | The size of the transmit buffer in packets. A value of 0 corresponds | 137 | The size of the transmit buffer in packets. A value of 0 corresponds |