summaryrefslogtreecommitdiff
path: root/src/packet_io/sendpacket.c
diff options
context:
space:
mode:
authoryangwei <[email protected]>2023-08-25 02:46:24 +0800
committeryangwei <[email protected]>2023-08-25 18:25:49 +0800
commit407f9233296dff7ab0e895b9510dfe490520471c (patch)
treec33157bdea4d7dcfbcdd42a1b336ed78ca41e3be /src/packet_io/sendpacket.c
parenteeb5c179a53ba0715d6be1d80f19ee2a2be7bf2b (diff)
🐞 fix(deal_udp): 增加流标识,保证包处理过程中隧道外层流不被强制淘汰
Diffstat (limited to 'src/packet_io/sendpacket.c')
-rw-r--r--src/packet_io/sendpacket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/packet_io/sendpacket.c b/src/packet_io/sendpacket.c
index 175a9e9..0b53616 100644
--- a/src/packet_io/sendpacket.c
+++ b/src/packet_io/sendpacket.c
@@ -2413,7 +2413,7 @@ static raw_pkt_t *update_raw_pkt(struct streaminfo_private *stream_pr, uchar snd
{
raw_pkt_t *inject_raw_pkt = NULL;
- if (stream_pr->packet_io_context != 0)
+ if (stream_pr->plugin_process_context != 0)
{
/* �ڰ�����������, ����û�п���polling, do nothing */
*inject_dir_reverse = ((snd_dir == stream_pr->stream_public.routedir) ? 0 : 1);