Re: [Wireshark-dev] Recursion depth limit for packet reassembly

2019-11-13 Thread Maynard, Chris via Wireshark-dev
> -Original Message- > From: Wireshark-dev [mailto:wireshark-dev-boun...@wireshark.org] On > Behalf Of Thomas Wiens > Sent: Saturday, November 9, 2019 7:18 AM > To: wireshark-dev@wireshark.org > Subject: [Wireshark-dev] Recursion depth limit for packet reassembly >

[Wireshark-dev] Recursion depth limit for packet reassembly

2019-11-09 Thread Thomas Wiens
Hi, I'm working on a protocol dissector where I'm using packet reassembly. Now I've got a capture with 1026 fragments, which fails to reassemble with the standard Wireshark (assert fails) due to the limitation to 500 fragments in epan/packet.c: #define PINFO_LAYER_MAX_RECURSION_DEPTH 500 For