--- zzzz-none-000/linux-4.19.183/include/net/tcp_states.h 2021-03-24 10:07:39.000000000 +0000 +++ bcm63-7530ax-756/linux-4.19.183/include/net/tcp_states.h 2023-06-28 08:54:20.000000000 +0000 @@ -26,6 +26,9 @@ TCP_LISTEN, TCP_CLOSING, /* Now a valid state */ TCP_NEW_SYN_RECV, +#if defined(CONFIG_BCM_KF_MPTCP) && defined(CONFIG_BCM_MPTCP) + TCP_RST_WAIT, +#endif TCP_MAX_STATES /* Leave at the end! */ }; @@ -47,6 +50,9 @@ TCPF_LISTEN = (1 << TCP_LISTEN), TCPF_CLOSING = (1 << TCP_CLOSING), TCPF_NEW_SYN_RECV = (1 << TCP_NEW_SYN_RECV), +#if defined(CONFIG_BCM_KF_MPTCP) && defined(CONFIG_BCM_MPTCP) + TCPF_RST_WAIT = (1 << TCP_RST_WAIT), +#endif }; #endif /* _LINUX_TCP_STATES_H */