diff options
Diffstat (limited to 'epan/packet.h')
-rw-r--r-- | epan/packet.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/epan/packet.h b/epan/packet.h index 63127984..ecfa85a0 100644 --- a/epan/packet.h +++ b/epan/packet.h @@ -887,6 +887,20 @@ WS_DLL_PUBLIC gboolean postdissectors_want_hfids(void); WS_DLL_PUBLIC void prime_epan_dissect_with_postdissector_wanted_hfids(epan_dissect_t *edt); +/** Increment the dissection depth. + * This should be used to limit recursion outside the tree depth checks in + * call_dissector and dissector_try_heuristic. + * @param pinfo Packet Info. + */ + +WS_DLL_PUBLIC void increment_dissection_depth(packet_info *pinfo); + +/** Decrement the dissection depth. + * @param pinfo Packet Info. + */ + +WS_DLL_PUBLIC void decrement_dissection_depth(packet_info *pinfo); + /** @} */ #ifdef __cplusplus |