aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-xml.h
AgeCommit message (Collapse)AuthorFilesLines
2013-03-01Export libwireshark symbols using WS_DLL_PUBLIC defineBalint Reczey1-0/+5
Also remove old WS_VAR_IMPORT define and related Makefile magic everywhere in the project. svn path=/trunk/; revision=47992
2012-12-26Fix a bunch of warnings.Guy Harris1-1/+1
Cast away some implicit 64-bit-to-32-bit conversion errors due to use of sizeof. Cast away some implicit 64-bit-to-32-bit conversion errors due to use of strtol() and strtoul(). Change some data types to avoid those implicit conversion warnings. When assigning a constant to a float, make sure the constant isn't a double, by appending "f" to the constant. Constify a bunch of variables, parameters, and return values to eliminate warnings due to strings being given const qualifiers. Cast away those warnings in some cases where an API we don't control forces us to do so. Enable a bunch of additional warnings by default. Note why at least some of the other warnings aren't enabled. randpkt.c and text2pcap.c are used to build programs, so they don't need to be in EXTRA_DIST. If the user specifies --enable-warnings-as-errors, add -Werror *even if the user specified --enable-extra-gcc-flags; assume they know what they're doing and are willing to have the compile fail due to the extra GCC warnings being treated as errors. svn path=/trunk/; revision=46748
2010-07-08from Tarjei Knapstad.Anders Broman1-1/+1
Minor cleanups in packet-xml dissector. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4987 svn path=/trunk/; revision=33475
2009-01-28- add attributes and CDATA into XML structureTomas Kukosa1-0/+7
- implement functions for searching in XML structure svn path=/trunk/; revision=27316
2008-09-24put original tag name (not lowercase) into dissected xml structure tooTomas Kukosa1-0/+1
dissect xml even if tree is null svn path=/trunk/; revision=26261
2008-08-13supply dissected XML structure to caller dissectorTomas Kukosa1-0/+77
svn path=/trunk/; revision=26005