Revert "shortcut-fe: use tcp_be_liberal (#11188)"

This reverts commit 258cc2154e.
This commit is contained in:
coolsnowwolf 2023-05-22 12:45:34 +08:00
parent cc22efe713
commit 7431dcc9ef
2 changed files with 2 additions and 2 deletions

View File

@ -468,7 +468,7 @@ static int fast_classifier_update_protocol(struct sfe_connection_create *p_sic,
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 15, 0) #if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 15, 0)
net = nf_ct_net(ct); net = nf_ct_net(ct);
tn = nf_tcp_pernet(net); tn = nf_tcp_pernet(net);
if ((tn&&tn->tcp_be_liberal) if ((tn&&tn->tcp_no_window_check)
#else #else
if (nf_ct_tcp_no_window_check if (nf_ct_tcp_no_window_check
#endif #endif

View File

@ -504,7 +504,7 @@ static unsigned int sfe_cm_post_routing(struct sk_buff *skb, int is_v4)
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 15, 0) #if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 15, 0)
net = nf_ct_net(ct); net = nf_ct_net(ct);
tn = nf_tcp_pernet(net); tn = nf_tcp_pernet(net);
if ((tn&&tn->tcp_be_liberal) if ((tn&&tn->tcp_no_window_check)
#else #else
if (nf_ct_tcp_no_window_check if (nf_ct_tcp_no_window_check
#endif #endif