aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/wimax/msg_ulmap.c
AgeCommit message (Collapse)AuthorFilesLines
2013-09-24Wimax dissector improvements:Michael Mann1-74/+32
1. Remove message type field from all MAC Management "sub"dissectors and place it in Mac Management subdissector itself. This may cause backwards-compatibility issues (malformed packets) with third-party subdissectors of the MAC Management dissector, but it didn't make sense to have so many filters for a single enumerated value, especially when the various "protocol" filters covers many of them. 2. Removed some if(tree) checks as column info and calling other dissectors are sometimes executed underneath. Some of this is in preparation for addressing bug 5349. 3. Make all dissector functions (and a few others) static, and use register_dissector() when necessary. 4. Convert generic decoder CRC errors into expert info, rather than have it be a "protocol" filter (it just looks funny that way) In general, these dissectors seem "over-protocolized". I understand the need for all of the dissectors, but I don't know if they all need "protocol" status. svn path=/trunk/; revision=52203
2013-09-22Make dissectors register for their MAC Management Message Type and use ↵Michael Mann1-1/+14
dissector_try_uint to do any dissection. Many "outside" (third-party) message types appear to exist. Have the makefiles do all the work setting up proto_register_<dissector> and proto_reg_handoff_<dissector>, rather than sprinkled throughout the dissectors with extern declarations. More is coming to make more functions static (because of current makefile fixes) and cleanup MAC Management dissectors to remove unnecessary/duplicative code, but I wanted to get the build issues squared away. svn path=/trunk/; revision=52167
2013-02-10Comment out numerous unused hf_.... instances found by checkhf.Bill Meier1-12/+20
svn path=/trunk/; revision=47617
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-2/+0
svn path=/trunk/; revision=45015
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-05-09Fix a few scan-build warnings.Gerald Combs1-1/+1
svn path=/trunk/; revision=42528
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in ↵Bill Meier1-5/+5
plugin dissectors: Specifically: Replace FALSE|0 and TRUE|1 by ENC_BIG_ENDIAN|ENC_LITTLE_ENDIAN as the encoding parameter for proto_tree_add_item() calls which directly reference an item in hf[] which has a type of: FT_UINT8 FT_UINT16 FT_UINT24 FT_UINT32 FT_UINT64 FT_INT8 FT_INT16 FT_INT24 FT_INT32 FT_INT64 FT_FLOAT FT_DOUBLE svn path=/trunk/; revision=39292
2011-07-04From Kluchnikov Ivan:Anders Broman1-2/+2
Wrong length of items in wimax Compressed DL-MAP and UL-MAP. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6067 svn path=/trunk/; revision=37890
2011-01-19Use Wireshark standard marking for unused parameters.Jaap Keuter1-6/+2
svn path=/trunk/; revision=35590
2009-08-04Minor changes:Bill Meier1-378/+370
- Move proto_register...() to the end of the file as per convention; - Move ett[] to be local to proto_register...(); - "if (...==-1)" not req'd in proto_register...(); - #include <moduleinfo.h> not req'd; - Remove unneeded forward declarations. svn path=/trunk/; revision=29296
2009-06-22From Kovarththanan Rajaratnam:Stig Bjørlykke1-43/+43
More header field info cleanup in plugins/* and epan/dissectors/* svn path=/trunk/; revision=28811
2009-06-22From Kovarththanan Rajaratnam:Stig Bjørlykke1-307/+306
Move header field info declarations into function scope. This is the first step. Another patch will be submitted which actually scrubs the header field info declarations (remove empty blurbs, etc.) svn path=/trunk/; revision=28797
2008-12-22Fix some typos and spelling (mostly in text strings)Bill Meier1-2/+2
svn path=/trunk/; revision=27085
2008-08-29#include <prefs.h> not requiredBill Meier1-1/+0
svn path=/trunk/; revision=26103
2008-07-24Fix HARQ_ULMAP_IE decoder padding error (bug 2738).Martin Mathieson1-1/+1
From Frank Wang. svn path=/trunk/; revision=25815
2008-07-18Change C++ style comments to C style ...Bill Meier1-14/+14
svn path=/trunk/; revision=25762
2008-07-11From Frank Wang:Jaap Keuter1-1/+3
The ULMAP decoder can get a wrong bit offset when decoding CQICH_Alloc_IE. The finishing position shoud not pad to byte but pad to the length specified, which can be nibble aligned. svn path=/trunk/; revision=25703
2008-07-08Fix bug 2662 (ULMAP HARQ_ULMAP_IE decode error).Martin Mathieson1-14/+29
From Frank Wang. I'd prefer to delete wrong code, but we'll see if anyone misses it. svn path=/trunk/; revision=25675
2008-06-23Try again to get labels matching function names.Martin Mathieson1-2/+2
svn path=/trunk/; revision=25529
2008-06-23Fix wimax UL-MAP ext IE decode error.Martin Mathieson1-1/+1
From Frank Wang (bug 2548). svn path=/trunk/; revision=25528
2007-12-14Warning fixes: function declaration isn’t a prototypeJörg Mayer1-1/+1
svn path=/trunk/; revision=23862
2007-12-06Change calls to g_ntohs, g_ntohl, g_htons, and g_htonl to theirGerald Combs1-49/+50
epan/pint.h equivalents. Add warnings about trying to operate on tvb data directly. svn path=/trunk/; revision=23787
2007-11-28Change each filter prefix to match the protocol name ("wmx"). Add aGerald Combs1-43/+43
"wmx" prefix to each sub-protocol. "wmx"-ize the preferences and dissector registration. svn path=/trunk/; revision=23660
2007-05-27Use tvb_reported_length() to get the amount of data we should look at;Guy Harris1-2/+2
the number of bytes in the packet or subset of the packet is the reported length, tvb_length() just gives you the amount of that data that was actually captured. Include <glib.h>, not <gmodule.h>, even in plugins. Fix the version numbers in the rc files. svn path=/trunk/; revision=21960
2007-05-25From Mike Harvey: Support for WiMAX and the WiMAX M2M encapsulation protocol.Gerald Combs1-0/+2427
Add support for WiMAX and M2M to various makefiles and installer files. Add basic support for M2M to randpkt. svn path=/trunk/; revision=21945