diff options
author | Gerrit Renker <gerrit@erg.abdn.ac.uk> | 2007-09-26 13:35:19 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:52:44 -0400 |
commit | e356d37a096a990ea1a74c44c15640122e56110b (patch) | |
tree | 174fea2bce6bbd6d6001c7ea1b0bb914053571d0 /net/dccp/dccp.h | |
parent | 9bf55cda9b2487fa7316dad3880acb0031ad3c0f (diff) |
[DCCP]: Factor out common code for generating Resets
This factors code common to dccp_v{4,6}_ctl_send_reset into a separate function,
and adds support for filling in the Data 1 ... Data 3 fields from RFC 4340, 5.6.
It is useful to have this separate, since the following Reset codes will always
be generated from the control socket rather than via dccp_send_reset:
* Code 3, "No Connection", cf. 8.3.1;
* Code 4, "Packet Error" (identification for Data 1 added);
* Code 5, "Option Error" (identification for Data 1..3 added, will be used later);
* Code 6, "Mandatory Error" (same as Option Error);
* Code 7, "Connection Refused" (what on Earth is the difference to "No Connection"?);
* Code 8, "Bad Service Code";
* Code 9, "Too Busy";
* Code 10, "Bad Init Cookie" (not used).
Code 0 is not recommended by the RFC, the following codes would be used in
dccp_send_reset() instead, since they all relate to an established DCCP connection:
* Code 1, "Closed";
* Code 2, "Aborted";
* Code 11, "Aggression Penalty" (12.3).
Signed-off-by: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Signed-off-by: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Diffstat (limited to 'net/dccp/dccp.h')
-rw-r--r-- | net/dccp/dccp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/dccp/dccp.h b/net/dccp/dccp.h index a602d9212c64..ee97950d77d1 100644 --- a/net/dccp/dccp.h +++ b/net/dccp/dccp.h | |||
@@ -294,6 +294,8 @@ extern unsigned int dccp_poll(struct file *file, struct socket *sock, | |||
294 | extern int dccp_v4_connect(struct sock *sk, struct sockaddr *uaddr, | 294 | extern int dccp_v4_connect(struct sock *sk, struct sockaddr *uaddr, |
295 | int addr_len); | 295 | int addr_len); |
296 | 296 | ||
297 | extern struct sk_buff *dccp_ctl_make_reset(struct socket *ctl, | ||
298 | struct sk_buff *skb); | ||
297 | extern int dccp_send_reset(struct sock *sk, enum dccp_reset_codes code); | 299 | extern int dccp_send_reset(struct sock *sk, enum dccp_reset_codes code); |
298 | extern void dccp_send_close(struct sock *sk, const int active); | 300 | extern void dccp_send_close(struct sock *sk, const int active); |
299 | extern int dccp_invalid_packet(struct sk_buff *skb); | 301 | extern int dccp_invalid_packet(struct sk_buff *skb); |