Minor: update 'Conversation' intro to include find_or_create_conversation

svn path=/trunk/; revision=54595
This commit is contained in:
Bill Meier 2014-01-04 17:45:12 +00:00
parent b26f50cbb1
commit 65ac347e0c
1 changed files with 4 additions and 4 deletions

View File

@ -2140,10 +2140,10 @@ ServerA:1000 to ClientA:2000 and the packet from ClientA:2000 to ServerA:1000.
2.2.1 Conversation Routines
There are six routines that you will use to work with a conversation:
conversation_new, find_conversation, conversation_add_proto_data,
conversation_get_proto_data, conversation_delete_proto_data,
and conversation_set_dissector.
There are seven routines that you will use to work with a conversation:
conversation_new, find_conversation, find_or_create_conversation,
conversation_add_proto_data, conversation_get_proto_data,
conversation_delete_proto_data, and conversation_set_dissector.
2.2.1.1 The conversation_init function.