aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp/dccp.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/dccp/dccp.h')
-rw-r--r--net/dccp/dccp.h8
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
329extern void dccp_insert_options(struct sock *sk, struct sk_buff *skb); 329extern int dccp_insert_options(struct sock *sk, struct sk_buff *skb);
330extern void dccp_insert_option_elapsed_time(struct sock *sk, 330extern 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);
333extern void dccp_insert_option_timestamp(struct sock *sk, 333extern int dccp_insert_option_timestamp(struct sock *sk,
334 struct sk_buff *skb); 334 struct sk_buff *skb);
335extern void dccp_insert_option(struct sock *sk, struct sk_buff *skb, 335extern 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