aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet_info.h
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2007-08-08 22:53:14 +0000
committerUlf Lamping <ulf.lamping@web.de>2007-08-08 22:53:14 +0000
commit5c86e7fd4c70e5cf2d2dcd0679439335ba5b67a7 (patch)
tree8d5f9db58a5f087f33f3ddd55f89b7c649e2cd20 /epan/packet_info.h
parent8ad0c82614b1c76f9237bb22fa97e2140b6ca597 (diff)
add pinfo fields clnp_srcref and clnp_dstref to the clnp dissector, similar to the srcport / destport already existing. As simply using srcport / destport for this will confuse mixed protocol usage (like RFC1006 ISOonTCP), I've added explicit clnp fields.
This way, protocols on top of COTP / CLNP have at least a chance to do reassembling correct. svn path=/trunk/; revision=22473
Diffstat (limited to 'epan/packet_info.h')
-rw-r--r--epan/packet_info.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/packet_info.h b/epan/packet_info.h
index 691c0138e1..52b7d95862 100644
--- a/epan/packet_info.h
+++ b/epan/packet_info.h
@@ -177,6 +177,8 @@ typedef struct _packet_info {
const char *dcerpc_procedure_name; /* Used by PIDL to store the name of the current dcerpc procedure */
struct _sccp_msg_info_t* sccp_info;
+ guint16 clnp_srcref; /* clnp/cotp source reference (can't use srcport, this would confuse tpkt) */
+ guint16 clnp_dstref; /* clnp/cotp destination reference (can't use dstport, this would confuse tpkt) */
} packet_info;
#endif /* __PACKET_INFO_H__ */