aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-homeplug.c
AgeCommit message (Collapse)AuthorFilesLines
2010-12-20Rename the routines that handle dissector tables with unsigned integerguy1-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.) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35224 f5534014-38df-0310-8fa8-9805f1628bb7
2010-01-13From Didier Gautheron:etxrab1-1/+1
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 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31519 f5534014-38df-0310-8fa8-9805f1628bb7
2009-09-24Remove check_col() guardkrj1-114/+38
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30124 f5534014-38df-0310-8fa8-9805f1628bb7
2009-09-23Don't col_clear() followed by col_set_str(). A col_set_str() will clear ↵krj1-38/+0
(replace) any existing string (the fence still needs to be respected though) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30086 f5534014-38df-0310-8fa8-9805f1628bb7
2009-09-07Don't pass length 0 to a FT_UINT.stig1-3/+3
Fixed some uint types with length 2. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29755 f5534014-38df-0310-8fa8-9805f1628bb7
2009-09-06Use correct field types for variable length fields.stig1-5/+37
Fixed types by adding new types for "undissected" blocks: - Replace Bridge Address - Multicast With Response - Confirm Network Encryption Key - Host Tag git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29741 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkkrj1-2/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29340 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-07From Kovarththanan Rajaratnam:stig1-1/+1
More FT_XXX cleanup. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28971 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-05From Kovarththanan Rajaratnam:etxrab1-55/+55
Cleanup header_field_info definitions https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3548 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28940 f5534014-38df-0310-8fa8-9805f1628bb7
2009-06-28From Jon Smirl:etxrab1-609/+1478
More packet decoding for Intellon powerline devices. From me put proto_register_homeplug() last in the file and whitespace changes. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28872 f5534014-38df-0310-8fa8-9805f1628bb7
2009-06-24Fixed field types for some reserved fields.stig1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28835 f5534014-38df-0310-8fa8-9805f1628bb7
2009-06-18From Kovarththanan Rajaratnam via bug 3548:stig1-74/+74
(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 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28770 f5534014-38df-0310-8fa8-9805f1628bb7
2009-01-14reg_handoff: "once-only" test [if(!initted)...] not req'd since no prefs ↵wmeier1-12/+3
callback. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27227 f5534014-38df-0310-8fa8-9805f1628bb7
2009-01-13From Luca Ceresoli:jake1-72/+635
Several improvements to the Homeplug dissector. New features: * Added decoding of new packet types: Vendor Specific, Set NEK, Set Local Parameters, Bridging Characteristics (Local and Network), Set Transmit Characteristics * Completed Network Statistics dissector, now decodes Extended packets; added a generated boolean value to allow Basic/Extended filtering * Local/Network specifier for Bridging Characteristics and Basic/Extended specifier for Network Statistics now appear in info column Cleanups: * Cleaned up and made more concise decoding of IC-ID (chip ID) using range_string * Fixed formatting of some field types * A few minor cleanups git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27218 f5534014-38df-0310-8fa8-9805f1628bb7
2008-09-26Minor cleanup related to proto_register and proto_reg_handoffwmeier1-7/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26281 f5534014-38df-0310-8fa8-9805f1628bb7
2008-09-09Fix for bug 2859:jake1-89/+119
Skip data portion of unknown TLV. Expand type interpretation and several other cleanups. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26169 f5534014-38df-0310-8fa8-9805f1628bb7
2008-08-25#include <prefs.h> not req'dwmeier1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26089 f5534014-38df-0310-8fa8-9805f1628bb7
2007-04-12get rid of unused variablestandel1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21394 f5534014-38df-0310-8fa8-9805f1628bb7
2007-03-30update of homeplug dissector with the use of ptvcursor subtree managementstandel1-263/+213
functions. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21278 f5534014-38df-0310-8fa8-9805f1628bb7
2007-03-21Fixes for: warning: function declaration isn't a prototypejmayer1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21082 f5534014-38df-0310-8fa8-9805f1628bb7
2007-01-17Oops, set properties on the new filemorriss1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20461 f5534014-38df-0310-8fa8-9805f1628bb7
2007-01-17From Sebastien Tandel: Support for the dissection of the Intellon homeplug ↵morriss1-0/+857
powerline protocol based on INT51X1 specification. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20459 f5534014-38df-0310-8fa8-9805f1628bb7