aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-extreme.c
AgeCommit message (Collapse)AuthorFilesLines
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-1/+1
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
2010-01-13From Didier Gautheron:Anders Broman1-4/+2
check_col.diff Remove redundant calls to check_col() if it guards only one columns function with one parameter after the column type. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4394 svn path=/trunk/; revision=31519
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-6/+3
svn path=/trunk/; revision=29340
2009-07-07Changed flags_set_truth -> tfs_set_notsetStig Bjørlykke1-2/+2
svn path=/trunk/; revision=28989
2009-06-24From Kovarththanan Rajaratnam:Stig Bjørlykke1-4/+5
Cleanup hf_register_info declaration passed to llc_add_oui(). While there, change the declaration to an array in order to be consistent with the rest of packet-*.c files. svn path=/trunk/; revision=28830
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-43/+43
(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
2009-04-17Remove some no-longer-needed casts.Gerald Combs1-2/+2
svn path=/trunk/; revision=28081
2009-03-29More size_t casts.Anders Broman1-2/+2
svn path=/trunk/; revision=27880
2007-11-08Apply yet another set of the optimization patches:Anders Broman1-1/+1
When offset parameter is 0 replace tvb_bytes_exist() with the faster tvb_length(). non heuristic dissectors svn path=/trunk/; revision=23405
2007-11-02- Rename EAPSv2 to ESL (EAPS shared link).Jörg Mayer1-100/+115
- Some small improvements to ESL decoding. svn path=/trunk/; revision=23342
2007-09-26Decode role on shared linkJörg Mayer1-4/+21
svn path=/trunk/; revision=22985
2007-09-26Beginnings of EAPS shared link packet dissection (EAPSv2)Jörg Mayer1-10/+219
svn path=/trunk/; revision=22984
2007-09-18Try to improve dissection of ELSM message (guesswork)Jörg Mayer1-8/+59
svn path=/trunk/; revision=22904
2007-04-20Add Recognition of ELRP (Extreme Loop Recognition Protocol) Elements.Jörg Mayer1-13/+57
I don't know how to decode them though. Fix some typos. Change some Element descriptions. svn path=/trunk/; revision=21478
2007-04-17Detect ELSM as such - meaning of the elements is still unknown.Jörg Mayer1-1/+39
svn path=/trunk/; revision=21456
2007-03-28Remove almost all of the casts I committed recently and in place ofStephen Fisher1-4/+4
them, add -Wno-pointer-sign to CFLAGS when gcc will accept it. svn path=/trunk/; revision=21253
2007-03-27Fix about 100 simple to fix warnings from gcc 4.0 in epan/dissectors Stephen Fisher1-4/+4
svn path=/trunk/; revision=21233
2006-05-21change a whole bunch of ethereal into wiresharkRonnie Sahlberg1-3/+3
svn path=/trunk/; revision=18196
2005-09-17Move a pile of protocol-related headers from the top-level sourceGuy Harris1-1/+1
directory to the epan directory. Some of them should perhaps ultimately be moved to epan/dissectors, if they pertain only to stuff exported by a particular dissector. Fix Gerald's e-mail address in files we're moving. svn path=/trunk/; revision=15844
2005-08-27Cosmectical comment updatesJörg Mayer1-2/+4
svn path=/trunk/; revision=15567
2005-08-27TypoJörg Mayer1-1/+1
svn path=/trunk/; revision=15564
2005-08-27- Add checksum verificationJörg Mayer1-10/+62
- Add checksum check to colorfilters svn path=/trunk/; revision=15563
2005-08-23The name in a Display TLV is null-terminated (or padded with a null byteGuy Harris1-11/+10
and extra crud). Don't bother with length checking on the VLAN name item - if it's zero-length, so be it. svn path=/trunk/; revision=15516
2005-08-23Use "format_text()" and "tvb_format_text()" when displaying strings. Guy Harris1-15/+63
(It's not necessary, or desirable, to use them when fetching strings.) When processing a VLAN TLV, check the length of the TLV, so we don't end up running past the end of the TLV and getting a negative remaining length. Append to the protocol tree item for the TLV, and the Info column, as we dissect the VLAN ID and VLAN name fields. svn path=/trunk/; revision=15515
2005-08-22Length of string == lengt of element - headerlengthJörg Mayer1-1/+1
svn path=/trunk/; revision=15512
2005-08-21- Make it possible to filter on eap.null, eap.info, eap.unknown etcJörg Mayer1-18/+68
- Display "Info" instead of "System" in packet summary - Make the Null element look like the other elements. - Small element summary formatting changes svn path=/trunk/; revision=15505
2005-08-21- In the info summary, port# and slot# were exchangedJörg Mayer1-6/+9
- In the Display element, the length of the display string was 4 too long - Display the Vlan id in the packet summary, not just "Vlan" - Remove trailing whitespace svn path=/trunk/; revision=15502
2005-08-17As reported by Jim Young:Jörg Mayer1-3/+3
- The port number was incorrectly displayed - Be a bit more verbose in the "Info" summary line. - Display the version including the internal number. svn path=/trunk/; revision=15389
2005-08-17Comment fixesJörg Mayer1-5/+5
svn path=/trunk/; revision=15388
2005-08-16- Small comment updates.Jörg Mayer1-83/+203
- Add some info about the element to the top level. svn path=/trunk/; revision=15378
2005-08-15Properly dissect vlan flagsJörg Mayer1-11/+40
svn path=/trunk/; revision=15359
2005-08-15- Documentation updateJörg Mayer1-4/+59
- The slot and port numbers printed on the chassis are off by one when compared to the transmitted values (reported by Jim Young). svn path=/trunk/; revision=15358
2005-08-13Use gboolean for Booleans.Guy Harris1-88/+82
Use "proto_tree_add_item()" whenever possible. svn path=/trunk/; revision=15344
2005-08-12Fix dissector bug on last element of ESRPJörg Mayer1-6/+13
svn path=/trunk/; revision=15320
2005-08-12- Bug fix: Show ip-addresses with correct endianess.Jörg Mayer1-22/+125
- Show version properly - VLAN ID was at a different place than expected. - Add some documentation infos svn path=/trunk/; revision=15313
2005-08-12EDS/EAPS/EPRS mostly finished - several fixmes remainJörg Mayer1-23/+158
svn path=/trunk/; revision=15306
2005-08-12Beginnings of a EDP, ESRP and EAPS dissectorJörg Mayer1-0/+540
svn path=/trunk/; revision=15299