diff options
| author | yangwei <[email protected]> | 2023-12-28 14:58:41 +0800 |
|---|---|---|
| committer | yangwei <[email protected]> | 2023-12-29 18:07:05 +0800 |
| commit | 2c6221da3e7238eb6082020f70d04c40c013a971 (patch) | |
| tree | 0e744bbaba033c9db4d4793f4fd2e18b96009c19 /include | |
| parent | 3b2e595f348fc81a3eae21f8fa6fcfeef3caf4b2 (diff) | |
🐞 fix(context rawpkt info): Fix TSG-18200
按流方向存储历史数据包和元信息,避免重复流量时出现两侧都是ingress的情况
Diffstat (limited to 'include')
| -rw-r--r-- | include/private/stream_internal.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/private/stream_internal.h b/include/private/stream_internal.h index 679786f..eee5e8b 100644 --- a/include/private/stream_internal.h +++ b/include/private/stream_internal.h @@ -185,9 +185,8 @@ struct half_tcpstream /* ����ÿ�������������һ����, ����polling entry����ʹ�� */ typedef struct { - const raw_pkt_t *raw_pkt_up; - const raw_pkt_t *raw_pkt_down; - struct rawpkt_metadata* meta[2];// ÿ������metadata������洢��polling_inject_context��, update_raw_pkt��������ʱ����������䵽���ص�rawpkt�� + const raw_pkt_t *raw_pkt_stream_dir[2]; + struct rawpkt_metadata* meta_stream_dir[2];// ÿ������metadata������洢��polling_inject_context��, update_raw_pkt��������ʱ����������䵽���ص�rawpkt�� }polling_inject_context_t; struct streaminfo_private |
