aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dis-fields.c
AgeCommit message (Collapse)AuthorFilesLines
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2011-10-27Fix proto_tree_add_item( encoding args;Bill Meier1-2/+2
Do whitespace cleanup (for a few files). svn path=/trunk/; revision=39640
2011-07-05The #if 0'ed out code was being used; #if 0'ing it out meant that someGuy Harris1-6/+8
items didn't get put into the protocol tree. See, for example, the 4548-Bug4668.pcap capture in the Wireshark menagerie (and attached to bug 4668). Instead, replace the #if 0'ed out code with code that does what the non-commented-out line of code did, but doesn't assign to the unused and now non-existent pi variable. Make the "hf_id != -1" case the first one, as that should be the "normal" case. svn path=/trunk/; revision=37908
2011-05-20'#if 0' code related to already commented out code: Fixes Coverity 881.Bill Meier1-6/+11
svn path=/trunk/; revision=37328
2010-06-09Fix a gcc -Wstrict-prototypes warningBill Meier1-1/+1
svn path=/trunk/; revision=33195
2010-05-11From Paul J. Metzger: Add support for decoding DIS Electromagnetic Emission ↵Bill Meier1-11/+111
packets. svn path=/trunk/; revision=32758
2010-04-06#include <string.h> not needed.Bill Meier1-1/+0
svn path=/trunk/; revision=32410
2010-03-27#include <stdio.h> not req'd; cleanup whitespace & indentation.Bill Meier1-35/+35
svn path=/trunk/; revision=32308
2010-03-27From Chuck Kristofek:Anders Broman1-10/+130
DIS update to introduce hf_ based filtering and radio family dissection. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4610 svn path=/trunk/; revision=32306
2009-11-13From Michael Dishman:Jaap Keuter1-70/+319
Fixed parser for DIS DataRequest PDU. Added parser for DIS StartResume, StopFreeze, Acknowledge, ActionRequest, ActionResponse, Comment, CreateEntity, DeleteEntity PDUs. Added parser for "reliable" versions of the above DIS PDUs. Added parser for DIS Application Control PDU. Added parsers for DIS Persistent Object Family PDUs. svn path=/trunk/; revision=30947
2009-10-18Use %f for double in printf.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=30604
2009-06-02From Matt Deckard:Jaap Keuter1-0/+16
Add support for the DIS protocol dissector to more fully interpret the PDU types "Data Query", "Data", and "Set Data". It should interpret the originating and receiving entity IDs, request ID, number of fixed and variable datum fields, and the ID and values of each datum field in the PDU. svn path=/trunk/; revision=28583
2008-08-20From Scott Bailey:Jaap Keuter1-0/+55
It takes a calculator to decode the timestamps. But no more! Timestamps using the attached patch are displayed as follows: Timestamp = MM:SS mmm absolute (UTM) or Timestamp = MM:SS mmm relative where M is minutes, S is seconds, and m is milliseconds. This is in accord with 'IEEE Std 1278.1-1995' section 5.2.31. svn path=/trunk/; revision=26047
2007-05-29Use G_GINT64_MODIFIER, rather than the PRI[douxX]64 macros, for GLibGuy Harris1-3/+3
routines and routines using those routines. GLib might use different modifiers for 64-bit quantities than the platform's C library does. svn path=/trunk/; revision=21990
2007-02-19Continuing the tradition: squelch some compiler warnings ....Bill Meier1-1/+1
svn path=/trunk/; revision=20866
2006-05-21change a whole bunch of ethereal into wiresharkRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18196
2005-09-20Give them RCS IDs.Guy Harris1-0/+2
svn path=/trunk/; revision=15910
2005-07-30Make some funtions static. More char -> const char warning fixesJörg Mayer1-1/+1
svn path=/trunk/; revision=15146
2005-07-11From Jeremy j Ouellette:Anders Broman1-0/+503
DIS dissection. svn path=/trunk/; revision=14899