tcp_input.c (648ef4b88673dadb8463bf0d4b10fbf33d55def8) tcp_input.c (cc7972ea1932335e0a0ee00ac8a24b3e8304630d)
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * INET An implementation of the TCP/IP protocol suite for the LINUX
4 * operating system. INET is implemented using the BSD Socket
5 * interface as the means of communication with the user level.
6 *
7 * Implementation of the Transmission Control Protocol(TCP).
8 *

--- 3912 unchanged lines hidden (view full) ---

3921 case TCPOPT_MD5SIG:
3922 /*
3923 * The MD5 Hash has already been
3924 * checked (see tcp_v{4,6}_do_rcv()).
3925 */
3926 break;
3927#endif
3928 case TCPOPT_MPTCP:
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * INET An implementation of the TCP/IP protocol suite for the LINUX
4 * operating system. INET is implemented using the BSD Socket
5 * interface as the means of communication with the user level.
6 *
7 * Implementation of the Transmission Control Protocol(TCP).
8 *

--- 3912 unchanged lines hidden (view full) ---

3921 case TCPOPT_MD5SIG:
3922 /*
3923 * The MD5 Hash has already been
3924 * checked (see tcp_v{4,6}_do_rcv()).
3925 */
3926 break;
3927#endif
3928 case TCPOPT_MPTCP:
3929 mptcp_parse_option(ptr, opsize, opt_rx);
3929 mptcp_parse_option(skb, ptr, opsize, opt_rx);
3930 break;
3931
3932 case TCPOPT_FASTOPEN:
3933 tcp_parse_fastopen_option(
3934 opsize - TCPOLEN_FASTOPEN_BASE,
3935 ptr, th->syn, foc, false);
3936 break;
3937

--- 2785 unchanged lines hidden ---
3930 break;
3931
3932 case TCPOPT_FASTOPEN:
3933 tcp_parse_fastopen_option(
3934 opsize - TCPOLEN_FASTOPEN_BASE,
3935 ptr, th->syn, foc, false);
3936 break;
3937

--- 2785 unchanged lines hidden ---