Fix find_conversation_pinfo() description in documentation

Change-Id: I3956dd841ee29d1676dbe2d1927a31bae5249414
Reviewed-on: https://code.wireshark.org/review/34986
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
This commit is contained in:
Pascal Quantin 2019-11-05 14:50:58 +01:00
parent b921cd32dd
commit b01f0febe2
1 changed files with 2 additions and 1 deletions

View File

@ -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).