summaryrefslogtreecommitdiff
path: root/epan/conversation.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2004-07-06 19:01:32 +0000
committerGerald Combs <gerald@wireshark.org>2004-07-06 19:01:32 +0000
commit2b53a88bf8b9190055c43a9c3e045af7ad39fcf9 (patch)
tree83be3d232c51cbc40b13f4741ada7e92977960d6 /epan/conversation.h
parent44f812de8ec2061c2b702bb306363f5da8f11c4d (diff)
downloadwireshark-2b53a88bf8b9190055c43a9c3e045af7ad39fcf9.tar.gz
From Dinesh Dutt:
- conversation.[ch] - To support not setting port2 on matching a conversation. This is used by protocols such as iSNS in which the client registers a TCP/UDP port with the server for notifications and the server sends notifications to this port from different source ports. - packet-isns.c - Added support for handling zero-length TLVs and ESI & SCN frames (when registering an SCN/ESI port, a conversation dissector is setup). svn path=/trunk/; revision=11320
Diffstat (limited to 'epan/conversation.h')
-rw-r--r--epan/conversation.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/conversation.h b/epan/conversation.h
index acc16165bb..fedb5d5ffe 100644
--- a/epan/conversation.h
+++ b/epan/conversation.h
@@ -1,7 +1,7 @@
/* conversation.h
* Routines for building lists of packets that are part of a "conversation"
*
- * $Id: conversation.h,v 1.10 2002/08/28 20:40:44 jmayer Exp $
+ * $Id: conversation.h,v 1.11 2004/07/06 19:01:32 gerald Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -31,6 +31,7 @@
*/
#define NO_ADDR2 0x01
#define NO_PORT2 0x02
+#define NO_PORT2_FORCE 0x04
/*
* Flags to pass to "find_conversation()" to indicate that the address B
@@ -38,6 +39,7 @@
*/
#define NO_ADDR_B 0x01
#define NO_PORT_B 0x02
+#define NO_PORT_B_FORCE 0x04
#include "packet.h" /* for conversation dissector type */