aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet_info.h
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2007-02-21 20:21:11 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2007-02-21 20:21:11 +0000
commit8ed1260c2c992e4419d52ae45e322d28999a2a3c (patch)
tree6cc80f864f7e8cd0d00d6ef3d30534c46b4c2dcf /epan/packet_info.h
parentaa49bdf665f206861936713258e4dfd93e422324 (diff)
add a field in pinfo where dcerpc/pidl can store the name of the current dcerpc procedure
use this field in the policy handle helper to indicate not only which frames the handle was opened/close in but also the name of the function that opened it. eventually, when other pidl support infrastructure is developed it would be nice if this could be expanded to also contain the name of the object/handle opened. svn path=/trunk/; revision=20895
Diffstat (limited to 'epan/packet_info.h')
-rw-r--r--epan/packet_info.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/packet_info.h b/epan/packet_info.h
index 46633e992a..ea81ea2374 100644
--- a/epan/packet_info.h
+++ b/epan/packet_info.h
@@ -176,6 +176,9 @@ typedef struct _packet_info {
guint16 profinet_type; /* the type of PROFINET packet (0: not a PROFINET packet) */
void *usb_conv_info;
void *tcp_tree; /* proto_tree for the tcp layer */
+
+ char *dcerpc_procedure_name; /* Used by PIDL to store the name of the current dcerpc procedure */
+
} packet_info;
#endif /* __PACKET_INFO_H__ */