aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-armagetronad.c
AgeCommit message (Collapse)AuthorFilesLines
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-3/+3
Also: remove trailing whitespace for a number of files. svn path=/trunk/; revision=39503
2011-09-26Make it build again.Anders Broman1-1/+2
svn path=/trunk/; revision=39145
2011-09-26Get rid of check_col() and use ENC_BIG_ENDIAN.Anders Broman1-20/+17
svn path=/trunk/; revision=39144
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-2/+2
keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) svn path=/trunk/; revision=35224
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-2/+1
svn path=/trunk/; revision=29340
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-2/+2
(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 svn path=/trunk/; revision=28770
2008-12-17Fix some typos and spelling (mostly in text strings)Bill Meier1-1/+1
svn path=/trunk/; revision=27037
2008-08-14Use const with value_string array definitionsBill Meier1-1/+1
svn path=/trunk/; revision=26028
2008-07-11(Finally) stop guint16s to access a string: just treat it as an array of ↵Jeff Morriss1-33/+30
chars and swap them "the hard way". svn path=/trunk/; revision=25702
2008-07-10Cast that guint16 into a char before trying to NULL terminate the string (so ↵Jeff Morriss1-3/+5
that we only set 1 byte to 0, not 2). svn path=/trunk/; revision=25697
2008-07-09Don't declare a char[] then cast it into a guint16 to use it as both a ↵Jeff Morriss1-3/+3
guint16 and a char: the char[] alignment may not be correct for a guint16. Instead declare a guint16[] and cast it to char when needed. This is still weird but it fixes a Solaris/SPARC warning. svn path=/trunk/; revision=25693
2008-05-05Remove depreciated functions g_string_sprint, g_string_sprintfa.Anders Broman1-1/+1
svn path=/trunk/; revision=25238
2007-06-18Fix windows build error ....Bill Meier1-1/+1
svn path=/trunk/; revision=22137
2007-06-18From Guillaume Chazarain:Stephen Fisher1-13/+17
Please find attached a patch to fix some bugs in the armagetronad dissector. More specifically: * Update the descriptors to armagetronad-0.2.8.2.1, the file src/network/Makefile.in does not exist anymore in the armagetronad source code. * Ensure the printed data is null terminated. * Avoid guint16 overflow because of the '* 2'. * Remove a statement with no effect (data = NULL). svn path=/trunk/; revision=22131
2006-05-28Ethereal->WiresharkAnders Broman1-1/+1
svn path=/trunk/; revision=18234
2006-05-21change a whole bunch of ethereal into wiresharkRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18196
2005-08-02Some warning fixes for "no previous declaration"Jörg Mayer1-1/+1
Remove svn:executable Add svn:eol-style native Add svn:keywords Id svn path=/trunk/; revision=15179
2005-07-22replace one tvb_memdup() with a tvb_memcpy() using an automatically freed ↵Ronnie Sahlberg1-3/+4
emem buffer svn path=/trunk/; revision=14998
2005-05-14From Guillaume ChazarainRonnie Sahlberg1-0/+332
New protocol : ARMAGETRONAD dissector for the protcol used by the game of the same name svn path=/trunk/; revision=14366