diff options
author | Matthieu Baerts <matthieu.baerts@tessares.net> | 2022-02-15 18:11:24 -0800 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2022-02-16 20:52:04 -0800 |
commit | f8e9ce4a6e85067d7d7cfa89167f5ce5f0ec2a8a (patch) | |
tree | 2c981a0d6d2f2f4c815be82955905a215ee8b14e /include/net/mptcp.h | |
parent | d6ab5ea2a38487aceb57a3ae000479407252a5dd (diff) |
mptcp: mptcp_parse_option is no longer exported
Options parsing in now done from mptcp_incoming_options().
mptcp_parse_option() has been removed from mptcp.h when CONFIG_MPTCP is
defined but not when it is not.
Fixes: cfde141ea3fa ("mptcp: move option parsing into mptcp_incoming_options()")
Acked-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: Matthieu Baerts <matthieu.baerts@tessares.net>
Signed-off-by: Mat Martineau <mathew.j.martineau@linux.intel.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'include/net/mptcp.h')
-rw-r--r-- | include/net/mptcp.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/net/mptcp.h b/include/net/mptcp.h index a925349b4b89..0a3b0fb04a3b 100644 --- a/include/net/mptcp.h +++ b/include/net/mptcp.h @@ -217,12 +217,6 @@ static inline bool rsk_drop_req(const struct request_sock *req) return false; } -static inline void mptcp_parse_option(const struct sk_buff *skb, - const unsigned char *ptr, int opsize, - struct tcp_options_received *opt_rx) -{ -} - static inline bool mptcp_syn_options(struct sock *sk, const struct sk_buff *skb, unsigned int *size, struct mptcp_out_options *opts) |