From b01f0febe2b2f57bae5320e8341232ffd0474e44 Mon Sep 17 00:00:00 2001 From: Pascal Quantin Date: Tue, 5 Nov 2019 14:50:58 +0100 Subject: [PATCH] Fix find_conversation_pinfo() description in documentation Change-Id: I3956dd841ee29d1676dbe2d1927a31bae5249414 Reviewed-on: https://code.wireshark.org/review/34986 Reviewed-by: Pascal Quantin --- doc/README.dissector | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/README.dissector b/doc/README.dissector index 387632a47c..b885ee5827 100644 --- a/doc/README.dissector +++ b/doc/README.dissector @@ -2713,10 +2713,11 @@ find_conversation()) The find_conversation_pinfo prototype: - extern conversation_t *find_conversation_pinfo(packet_info *pinfo); + extern conversation_t *find_conversation_pinfo(packet_info *pinfo, const guint options); Where: packet_info *pinfo = the packet_info structure + const guint options = conversation options, NO_ADDR_B and/or NO_PORT_B The frame number and the addresses necessary for find_conversation() are taken from the pinfo structure (as is commonly done).