aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcerpc-atsvc.c
AgeCommit message (Collapse)AuthorFilesLines
2010-10-30Add an SVN Id to these PIDL-generated dissectors. A patch to PIDL will be ↵morriss1-0/+2
sent upstream to the Samba developers. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34713 f5534014-38df-0310-8fa8-9805f1628bb7
2009-06-18From Kovarththanan Rajaratnam via bug 3548:stig1-65/+65
(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
2007-08-30From Chris Maynard:etxrab1-61/+61
Incorrect display filter field naming convention. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22742 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-29regenerate these dissectors using a patched pidl to add some extra pragmas ↵sahlberg1-0/+5
to keep ms compilers happy the pidl patch required : 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} .= "#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@21260 f5534014-38df-0310-8fa8-9805f1628bb7
2007-03-29update atsvc to latest idlsahlberg1-113/+154
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21257 f5534014-38df-0310-8fa8-9805f1628bb7
2006-09-24pidl has been updated to use WERR instead of DOS error tables.sahlberg1-177/+177
regenerate some dissectors git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19311 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
2005-12-10The Bitmap routine in lib/Parse/Pidl/Ethereal/NDR.pm in Pidl generatesguy1-34/+82
fields as BASE_DEC; bitmaps are typically displayed in hex in Ethereal, so it should generate BASE_HEX instead. (Submitted to bugzilla.samba.org as bug 3313.) A couple of the IDL files use "unistr"; define it as "[string] uint16", so that the resulting dissectors work correctly. Regenerate dissectors. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16754 f5534014-38df-0310-8fa8-9805f1628bb7
2005-09-16Move the packet-dcerpc-*.[hc] from pidl/ back to dissectors.jmayer1-0/+1506
This makes Ethereal build again - there's no real reason that ethereal fails to build for such a long time on so many platforms. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15835 f5534014-38df-0310-8fa8-9805f1628bb7
2005-09-15delete the old dissector and point the makefile to the new dissectorsahlberg1-1643/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15818 f5534014-38df-0310-8fa8-9805f1628bb7
2005-08-02Fix more "no previous declaration" warningsjmayer1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15169 f5534014-38df-0310-8fa8-9805f1628bb7
2005-03-19make idl2eth handle 8bit bitmapssahlberg1-472/+1433
make atsvc an autogenerated dcerpc dissector git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13808 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/+682
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