diff options
Diffstat (limited to 'net/dccp/dccp.h')
-rw-r--r-- | net/dccp/dccp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/dccp/dccp.h b/net/dccp/dccp.h index 7f5be0822f3a..34e70fb89d4a 100644 --- a/net/dccp/dccp.h +++ b/net/dccp/dccp.h | |||
@@ -326,13 +326,13 @@ static inline int dccp_ack_pending(const struct sock *sk) | |||
326 | inet_csk_ack_scheduled(sk); | 326 | inet_csk_ack_scheduled(sk); |
327 | } | 327 | } |
328 | 328 | ||
329 | extern void dccp_insert_options(struct sock *sk, struct sk_buff *skb); | 329 | extern int dccp_insert_options(struct sock *sk, struct sk_buff *skb); |
330 | extern void dccp_insert_option_elapsed_time(struct sock *sk, | 330 | extern int dccp_insert_option_elapsed_time(struct sock *sk, |
331 | struct sk_buff *skb, | 331 | struct sk_buff *skb, |
332 | u32 elapsed_time); | 332 | u32 elapsed_time); |
333 | extern void dccp_insert_option_timestamp(struct sock *sk, | 333 | extern int dccp_insert_option_timestamp(struct sock *sk, |
334 | struct sk_buff *skb); | 334 | struct sk_buff *skb); |
335 | extern void dccp_insert_option(struct sock *sk, struct sk_buff *skb, | 335 | extern int dccp_insert_option(struct sock *sk, struct sk_buff *skb, |
336 | unsigned char option, | 336 | unsigned char option, |
337 | const void *value, unsigned char len); | 337 | const void *value, unsigned char len); |
338 | 338 | ||