diff options
author | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2005-12-07 13:09:42 +0000 |
---|---|---|
committer | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2005-12-07 13:09:42 +0000 |
commit | 56b2184927702fa8bfae70bd63779070869e04bd (patch) | |
tree | 192509c1232ae8c3add246b3f8db173310416cb7 /epan/dissectors/packet-ntlmssp.h | |
parent | 93106a8e2e484562319c857c85df026e8f4f7308 (diff) | |
download | wireshark-56b2184927702fa8bfae70bd63779070869e04bd.tar.gz wireshark-56b2184927702fa8bfae70bd63779070869e04bd.tar.bz2 wireshark-56b2184927702fa8bfae70bd63779070869e04bd.zip |
make ntlmssp tappable
svn path=/trunk/; revision=16721
Diffstat (limited to 'epan/dissectors/packet-ntlmssp.h')
-rw-r--r-- | epan/dissectors/packet-ntlmssp.h | 8 |
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 |