aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ntlmssp.h
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2005-12-07 13:09:42 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2005-12-07 13:09:42 +0000
commit5b78179cb4017687ce883131ba3afb4de485cd6f (patch)
tree192509c1232ae8c3add246b3f8db173310416cb7 /epan/dissectors/packet-ntlmssp.h
parent3e84cbfd55ff7be4ba89a871081cb5adf2b101e1 (diff)
make ntlmssp tappable
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16721 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-ntlmssp.h')
-rw-r--r--epan/dissectors/packet-ntlmssp.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/epan/dissectors/packet-ntlmssp.h b/epan/dissectors/packet-ntlmssp.h
index 597a90b9cc..4799e4a785 100644
--- a/epan/dissectors/packet-ntlmssp.h
+++ b/epan/dissectors/packet-ntlmssp.h
@@ -32,4 +32,12 @@ int
dissect_ntlmv2_response(tvbuff_t *tvb, proto_tree *ntlmssp_tree, int offset,
int len);
+/* the ntlmssp data passed to tap listeners */
+typedef struct _ntlmssp_header_t {
+ guint32 type;
+ const char *domain_name;
+ const char *acct_name;
+ const char *host_name;
+} ntlmssp_header_t;
+
#endif