aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/wimax
AgeCommit message (Collapse)AuthorFilesLines
2012-04-10Add missing consts.Jakub Zawadzki3-3/+3
svn path=/trunk/; revision=42004
2012-04-04Add a "-build" argument to checkAPIs.pl. Use that argument when buildingJeff Morriss2-2/+2
from makefiles (and thus from the buildbot). The intention is to be able to tell when a human is running the tool so we can provide more code-review guidance. As a starter, enable the "too many proto_tree_add_text() calls" check when a human is running the tool. svn path=/trunk/; revision=41943
2012-01-29Add *.sbr files to the clean target.Anders Broman1-1/+1
svn path=/trunk/; revision=40761
2011-10-20Use ENC_NA as proto_tree_add_item() encoding arg for FT_ETHER hf[] field type.Bill Meier6-13/+13
svn path=/trunk/; revision=39490
2011-10-18Do some more conversions of proto_tree_add_item() 'encoding' argBill Meier10-348/+348
(previously missed). svn path=/trunk/; revision=39450
2011-10-15Convert plugin files proto_tree_add_item() 'encoding' arg for field types ↵Bill Meier1-1/+1
FT_STRING, FT_STRINGZ, FT_UINT_STRING as follows: 1. If there's no character encoding (ENC_ASCII, ...) specified then use ENC_ASCII. 2. For all but FT_UINT_STRING, always use ENC_NA (replacing any existing True/1/FALSE/0 /ENC_BIG_ENDIAN/ENC_LITTLE_ENDIAN). svn path=/trunk/; revision=39429
2011-10-10Convert 'encoding' parameter of certain proto_tree_add_item() calls in ↵Bill Meier9-303/+303
plugins/*: 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_BOOLEAN FT_IPv4 FT_EUI64 FT_GUID FT_UINT_STRING Also: For type FT_ITv6 use ENC_NA. (This was missed in an earlier SVN) svn path=/trunk/; revision=39329
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in ↵Bill Meier36-1127/+1127
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-10-05Use ENC_NA as encoding for proto_tree_add_item() calls which directly ↵Bill Meier20-162/+162
reference an hf item (in hf[] with types: FT_NONE FT_BYTES FT_IPV6 FT_IPXNET FT_OID Note: Encoding field set to ENC_NA only if the field was previously TRUE|FALSE|1|0|ENC_LITTLE_ENDIAN|ENC_BIG_ENDIAN svn path=/trunk/; revision=39262
2011-07-21Fix gcc 4.6 "set but not used [-Wunused-but-set-variable]" warnings.Bill Meier7-32/+10
svn path=/trunk/; revision=38150
2011-07-06From Kluchnikov Ivan:Anders Broman1-1/+58
Decoding Phy Synchronization Field in wimax DL-MAP and Compressed DL-MAP. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6068 svn path=/trunk/; revision=37921
2011-07-04From Kluchnikov Ivan:Anders Broman1-1/+5
Update wimax DCD Message mac version values. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6069 svn path=/trunk/; revision=37891
2011-07-04From Kluchnikov Ivan:Anders Broman2-4/+16
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-07-04From Kluchnikov Ivan:Anders Broman3-9/+11
Wireshark cannot decode wimax compressed DL-MAP without FCH burst. Function is_down_link use the base station address (bs_address), which is set in function dissect_wimax_fch_decoder. Changed function is_down_link, it use packet_info->p2p_dir for check if packet is downlink. packet_info->p2p_dir set in GSMTAP. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6066 svn path=/trunk/; revision=37889
2011-04-06Either remove or use unused values found by Coverity. Fixes CIDsGerald Combs3-5/+5
1169-1172. svn path=/trunk/; revision=36500
2011-03-29Add a missing break.Anders Broman1-0/+1
CID 490 svn path=/trunk/; revision=36401
2011-03-24Don't assign to a proto_item* if the value isn't to be used: Coverity 1173;Bill Meier1-135/+141
Also: - Fix 2 cases of an item attached to the wrong subtree; - "localize" & rename some variable definitions; - Minor indentation cleanup. svn path=/trunk/; revision=36310
2011-03-22Fix a typoJeff Morriss1-1/+1
svn path=/trunk/; revision=36249
2011-03-22Coverity 1167Ronnie Sahlberg1-4/+29
Dont assign tlv_item unless we need to dereference it. Also push the variable deeper into the scope where it is used isntead of function wide scope. svn path=/trunk/; revision=36243
2011-03-22Coverity 1168Ronnie Sahlberg1-3/+3
Create the items for 33_ARS under the subtree we create for this type and not under the parent node in the tree. svn path=/trunk/; revision=36242
2011-02-02A bit of Windows makefiles rework and cleanup:Bill Meier1-2/+3
- Define macros for certain CFLAGS in config.nmake iso of having defs in each makefile; a. -DHAVE_CONFIG_H and -D_U_="" are now part of a macro named STANDARD_CFLAGS; b. -WX has been replaced by WARNINGS_ARE_ERRORS (defined as -WX in config.nmake) (This allows disabling "Warnings as Errors" by just changing config.nmake) c. CVARSDLL definitions (not usage) have been removed from the various makefiles. XXX: It appears the usage of CVARSDLL can also be removed (not yet done) since: -DWIN32 and -DNULL=0 do not appear to be needed (any more); -D_MT and _D_DLL are not needed since /MP causes these definitions. d. Define a macro WARNINGS_CFLAGS with additional specific compiler (level4) warnings to be enabled. E.G., 4295: array is too small to include a terminating null character - config.nmake: reformat some long lines for readability; - plugins\Makefile.nmake: clean-deps does nothing: remove it (and usage in top-level makefile); - dissectors/Makefile.nmake: test to enable packet-rrc.obj target needs to include MSVC2010 ... svn path=/trunk/; revision=35747
2011-01-19Don't stop calling subdissectors when there's no tree.Jaap Keuter1-2/+0
svn path=/trunk/; revision=35591
2011-01-19Use Wireshark standard marking for unused parameters.Jaap Keuter7-55/+15
svn path=/trunk/; revision=35590
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-4/+4
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-09-24Plugins are not shared libraries, so:Guy Harris1-1/+0
1) don't set thei SOVERSION - run-time-loaded modules don't have an SOVERSION; 2) build them with link mode MODULE, not SHARED, on all platforms. (Fixing 1) also fixes the problem with building them as MODULE on OS X.) svn path=/trunk/; revision=34243
2010-09-23H. Sivank <hsivank@gmail.com>Jörg Mayer1-1/+1
I try to configure Wireshark with cmake on macosx 10.6. It fails with : set_target_properties called with incorrect number of arguments. Attached a patch to fix this issue. svn path=/trunk/; revision=34201
2010-05-14Add Cmake stuff to the source distribution so more people can try it out.Jeff Morriss1-4/+5
svn path=/trunk/; revision=32807
2010-04-08Get rid of check_col().Anders Broman25-361/+94
svn path=/trunk/; revision=32426
2010-03-18cmake changes:Jörg Mayer1-2/+3
- Add checking for linker flags - Install plugins with the name including the Wireshark version. This will make it easier to find matching plugin versions if files get just copied over. svn path=/trunk/; revision=32231
2010-02-24- Remove the lib prefix for plugin names.Jörg Mayer1-4/+2
- Remove a (resolved) comment. - Add a commented out line how to add version infos to the plugin's file name. svn path=/trunk/; revision=31995
2010-01-28Fix some gcc -Wshadow warnings.Bill Meier1-9/+9
svn path=/trunk/; revision=31724
2009-12-08Fix header field names containing dots.Jaap Keuter2-12/+12
Move excessive long texts to header field blurb. svn path=/trunk/; revision=31207
2009-11-17Remove the address operator from value_string arrays fed to VALS()Gerasimos Dimitriadis2-5/+5
svn path=/trunk/; revision=30995
2009-11-17Beginnings of enabling static builds. Still to do:Jörg Mayer1-1/+1
* Add -static * Registration may need different handling * Add plugins * Build error in wslua svn path=/trunk/; revision=30987
2009-11-07cmake will now honor -Werror if configured (default: on)Jörg Mayer1-3/+15
svn path=/trunk/; revision=30852
2009-10-09Use register_dissector_files in the plugins dissectorsKovarththanan Rajaratnam1-25/+3
svn path=/trunk/; revision=30435
2009-10-09From Didier Gautheron:Anders Broman1-1/+0
Dissectors using call_dissector() function inside a 'if (tree) {}' block. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4107 svn path=/trunk/; revision=30415
2009-10-06Build plugins with cmake on OSX.Stig Bjørlykke1-0/+2
svn path=/trunk/; revision=30373
2009-10-04Remove check_col()Kovarththanan Rajaratnam1-24/+6
svn path=/trunk/; revision=30317
2009-10-04Use G_N_ELEMENTS instead of hard coding size of arrayKovarththanan Rajaratnam1-2/+2
svn path=/trunk/; revision=30315
2009-10-04Constify wimax_mac_calc_crc8()Kovarththanan Rajaratnam3-3/+3
svn path=/trunk/; revision=30314
2009-10-04Constify wimax_mac_calc_crc16()Kovarththanan Rajaratnam3-10/+10
svn path=/trunk/; revision=30313
2009-10-04Constify wimax_mac_calc_crc32()Kovarththanan Rajaratnam5-5/+5
svn path=/trunk/; revision=30309
2009-10-04Remove forward referencesKovarththanan Rajaratnam1-13/+0
svn path=/trunk/; revision=30308
2009-10-04Move prototype to wimax_utils.hKovarththanan Rajaratnam2-1/+2
svn path=/trunk/; revision=30307
2009-10-04Include wimax_utils.hKovarththanan Rajaratnam1-1/+2
svn path=/trunk/; revision=30306
2009-09-24* Prefer col_append_str instead of col_append_fstr for constant stringsKovarththanan Rajaratnam1-2/+1
* Remove check_col guards svn path=/trunk/; revision=30127
2009-09-23Build more plugins with cmake.Jörg Mayer1-0/+120
svn path=/trunk/; revision=30084
2009-09-13Run checkapi on the dissector header filesJeff Morriss2-1/+5
svn path=/trunk/; revision=29883
2009-09-09We no longer support the old plugin API so remove it completely from the ↵Kovarththanan Rajaratnam1-1/+1
build system svn path=/trunk/; revision=29821