diff options
| author | yangwei <[email protected]> | 2024-07-12 18:01:51 +0800 |
|---|---|---|
| committer | yangwei <[email protected]> | 2024-07-12 18:01:51 +0800 |
| commit | c27eacce8a0b21b0692774d90edc213dc1dd54ea (patch) | |
| tree | 0acb226b74b5c17f8a297c0acdf435d65784ada6 | |
| parent | 6eb849e2498b0ed9a4f9cb8a9163c4a54e2f7aa9 (diff) | |
🐞 fix(deal_ipv6 ): set wrong streaminfo to gre_entry
| -rw-r--r-- | src/dealpkt/deal_ipv6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dealpkt/deal_ipv6.c b/src/dealpkt/deal_ipv6.c index 1ae6179..8a4a8e5 100644 --- a/src/dealpkt/deal_ipv6.c +++ b/src/dealpkt/deal_ipv6.c @@ -946,7 +946,7 @@ if(likely(pfstream_pr != NULL && pfstream_pr->layer_index < SAPP_SUPPORT_LAYER_N break;
case NEXTHDR_GRE:
((raw_pkt_t *)raw_pkt)->offset_to_raw_pkt_hdr = sizeof(struct mesa_ip6_hdr)+skip_len+offset_to_raw_pkt_hdr;
- ret = gre_entry(pfstream_pr,next_hdr_ptr,thread_num,routedir, raw_pkt, ((raw_pkt_t *)raw_pkt)->offset_to_raw_pkt_hdr);
+ ret = gre_entry(plocal_stream_pr,next_hdr_ptr,thread_num,routedir, raw_pkt, ((raw_pkt_t *)raw_pkt)->offset_to_raw_pkt_hdr);
goto done;
break;
case NEXTHDR_OSPF_IGP:
|
