aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-oipf.c
AgeCommit message (Collapse)AuthorFilesLines
2013-12-14Fix [-Wmissing-prototypes]Jakub Zawadzki1-0/+3
svn path=/trunk/; revision=54095
2013-03-16no need for if(tree)Martin Kaiser1-5/+3
removed unnecessary initialization svn path=/trunk/; revision=48339
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
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45017
2012-09-10Initial commit to support yet another method of passing data between dissectors.Jakub Zawadzki1-1/+1
Add new parameter 'data' to heur_dissector_t and new_dissector_t, for now it's always NULL svn path=/trunk/; revision=44860
2012-07-24(Minor) Create handle in proto_reg_handoff...() (where it's used);Bill Meier1-4/+5
Localize static variable to proto_reg_handoff...() svn path=/trunk/; revision=43974
2012-04-24Remove svn:executable property; Minor whitespace changes.Bill Meier1-6/+6
svn path=/trunk/; revision=42221
2012-04-09From Martin Kaiser: DVB-CI: register an application for the SAS resource, ↵Anders Broman1-0/+194
new OIPF dissector for application messages https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7039 svn path=/trunk/; revision=41990