diff options
Diffstat (limited to 'include/net/mptcp.h')
| -rw-r--r-- | include/net/mptcp.h | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/include/net/mptcp.h b/include/net/mptcp.h index cb580b06152f..8b5af683a818 100644 --- a/include/net/mptcp.h +++ b/include/net/mptcp.h @@ -105,7 +105,7 @@ bool mptcp_synack_options(const struct request_sock *req, unsigned int *size,  bool mptcp_established_options(struct sock *sk, struct sk_buff *skb,  			       unsigned int *size, unsigned int remaining,  			       struct mptcp_out_options *opts); -void mptcp_incoming_options(struct sock *sk, struct sk_buff *skb); +bool mptcp_incoming_options(struct sock *sk, struct sk_buff *skb);  void mptcp_write_options(__be32 *ptr, const struct tcp_sock *tp,  			 struct mptcp_out_options *opts); @@ -227,9 +227,10 @@ static inline bool mptcp_established_options(struct sock *sk,  	return false;  } -static inline void mptcp_incoming_options(struct sock *sk, +static inline bool mptcp_incoming_options(struct sock *sk,  					  struct sk_buff *skb)  { +	return true;  }  static inline void mptcp_skb_ext_move(struct sk_buff *to, |