aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcerpc-eventlog.c
AgeCommit message (Collapse)AuthorFilesLines
2009-07-29start describing ReportEventW in the IDL and make use of the "bitmap" sahlberg1-1/+129
for EventTypes. This addresses also bug 3552 with the until now unusued code. The eventlog dissector is very incomplete. While the protocol specification is available now, what is lacking is example capture files to test with when implementing more of the IDL definitions. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29231 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-29Fixup the correct names of the parameters for OpenEventLogWsahlberg1-32/+32
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29230 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-29update the idl to correctly dissect the read eventlog w flags as a sahlberg1-216/+225
bitmap and not as a uint32 this addresses bug 3691 (that was already manually addressed by hand in the generated dissector) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29229 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-12From Kovarththanan Rajaratnam via bug 3702:stig1-1/+1
This patch optimizes the data source name processing in add_new_data_source() by delaying it. We now simply store the constant string and lazily compute the name when needed. This gives a performance boost because we only need the name if we have multiple data sources. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29066 f5534014-38df-0310-8fa8-9805f1628bb7
2009-06-18From Kovarththanan Rajaratnam via bug 3548:stig1-84/+84
(1) Trailing/leading spaces are removed from 'name's/'blurb's (2) Duplicate 'blurb's are replaced with NULL (3) Empty ("") 'blurb's are replaced with NULL (4) BASE_NONE, NULL, 0x0 are used for 'display', 'strings' and 'bitmask' fields for FT_NONE, FT_BYTES, FT_IPv4, FT_IPv6, FT_ABSOLUTE_TIME, FT_RELATIVE_TIME, FT_PROTOCOL, FT_STRING and FT_STRINGZ field types (5) Only allow non-zero value for 'display' if 'bitmask' is non-zero git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28770 f5534014-38df-0310-8fa8-9805f1628bb7
2008-06-22Removed an unused static entry.stig1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25521 f5534014-38df-0310-8fa8-9805f1628bb7
2007-03-29regenerate the dissectors with an even newer patched version of pidl to add ↵sahlberg1-0/+2
two more pragmas you need this patch ontop of svn pidl to regenerate the files : Index: lib/Parse/Pidl/Wireshark/NDR.pm =================================================================== --- lib/Parse/Pidl/Wireshark/NDR.pm (revision 22005) +++ lib/Parse/Pidl/Wireshark/NDR.pm (working copy) @@ -916,6 +916,14 @@ $res{headers} .= "#ifdef HAVE_CONFIG_H\n"; $res{headers} .= "#include \"config.h\"\n"; $res{headers} .= "#endif\n\n"; + + $res{headers} .= "#ifdef _MSC_VER\n"; + $res{headers} .= "#pragma warning(disable:4005)\n"; + $res{headers} .= "#pragma warning(disable:4013)\n"; + $res{headers} .= "#pragma warning(disable:4018)\n"; + $res{headers} .= "#pragma warning(disable:4101)\n"; + $res{headers} .= "#endif\n\n"; + $res{headers} .= "#include <glib.h>\n"; $res{headers} .= "#include <string.h>\n"; $res{headers} .= "#include <epan/packet.h>\n\n"; git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21262 f5534014-38df-0310-8fa8-9805f1628bb7
2007-03-29fixup the idl to always use pointer for out parameterssahlberg1-12/+57
regenerate with patched pidl git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21261 f5534014-38df-0310-8fa8-9805f1628bb7
2007-03-28from Gisle Vanem: some more #pragma's that MingW don't likeulfl1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21240 f5534014-38df-0310-8fa8-9805f1628bb7
2007-03-27fix the remaining MSVC warnings by setting individual ↵ulfl1-0/+5
#pragma(warning:disable) settings - this is very certainly not the way to go, but the way to prevent additional warnings rushing in ... git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21221 f5534014-38df-0310-8fa8-9805f1628bb7
2007-03-22Using a patched version of pidl that decorates all parameters with _U_sahlberg1-261/+261
and updates to the conformance file, regenerate the eventlog dissector to remove a lot of compiler warnings git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21110 f5534014-38df-0310-8fa8-9805f1628bb7
2007-02-24update EFS and EVENTLOG conformance files to use the new definessahlberg1-71/+124
for when policy handles are opened/closed and regenerate the dissector with the latest version of PIDL git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20917 f5534014-38df-0310-8fa8-9805f1628bb7
2006-11-05add tracking of policy_handles to the eventlog dissectorsahlberg1-12/+12
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19801 f5534014-38df-0310-8fa8-9805f1628bb7
2006-09-24dissect_ndr_uint16()'s last argument points to a guint16, not a guint.guy1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19316 f5534014-38df-0310-8fa8-9805f1628bb7
2006-09-22update where the extra strings in the record are being dissected to that the ↵sahlberg1-8/+6
decode follows the packet structure more closely git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19283 f5534014-38df-0310-8fa8-9805f1628bb7
2006-09-22update to eventlog recordsahlberg1-16/+29
dissect the informational strings that may be present inside an event git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19282 f5534014-38df-0310-8fa8-9805f1628bb7
2006-09-22add conformance file magic to decode the non-NDR source/computer name ↵sahlberg1-40/+85
strings of the eventlog_Record git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19280 f5534014-38df-0310-8fa8-9805f1628bb7
2006-09-22updates to eventlog to use the pidl generated dissector and enhance the ↵sahlberg1-609/+1957
conformance file to dissect parts of the eventlog Records. (record dissection is incomplete since this is not really NDR encoded but better than nothing) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19279 f5534014-38df-0310-8fa8-9805f1628bb7
2006-05-21change a whole bunch of ethereal into wiresharksahlberg1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18196 f5534014-38df-0310-8fa8-9805f1628bb7
2004-08-03Move a bunch of stuff that's more Windows-related than SMB-related toguy1-1/+1
"packet-windows-common.[ch]". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11592 f5534014-38df-0310-8fa8-9805f1628bb7
2004-07-18Move dissectors to epan/dissectors directory.gram1-0/+859
Also move ncp222.py, x11-fields, process-x11-fields.pl, make-reg-dotc, and make-reg-dotc.py. Adjust #include lines in files that include packet-*.h files. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11410 f5534014-38df-0310-8fa8-9805f1628bb7