aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/wimax
AgeCommit message (Collapse)AuthorFilesLines
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
2009-08-21Also fake empty field_info's by gracefully handling NULL field_info pointer ↵Kovarththanan Rajaratnam1-0/+8
elsewhere. svn path=/trunk/; revision=29490
2009-08-09Add PTREE_FINFO and use PITEM_FINFO when possible.Kovarththanan Rajaratnam2-6/+6
svn path=/trunk/; revision=29355
2009-08-09'if(proto_... == -1)' not req'd; Don't register ett[] more than once;Bill Meier3-52/+27
svn path=/trunk/; revision=29351
2009-08-09Don't guard col_clear with col_checkKovarththanan Rajaratnam1-4/+1
svn path=/trunk/; revision=29346
2009-08-09Don't guard col_set_str (COL_INFO/COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-4/+1
svn path=/trunk/; revision=29345
2009-08-05Fix typo.Guy Harris1-1/+1
svn path=/trunk/; revision=29300
2009-08-04Put the initializers for the elements of value_string arrays into curlyGuy Harris3-11/+11
brackets, so the API checks for non-terminated value_string arrays will not falsely think the arrays are non-terminated. svn path=/trunk/; revision=29299
2009-08-04Minor changes:Bill Meier35-8064/+7858
- 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-08-03More minor cleanups:Bill Meier1-43/+46
- Move proto_register to near the end of the file as per convention; - Remove unneeded #include <epan/reassemble.h>; - Comment out unused ett[] array and associated; svn path=/trunk/; revision=29284
2009-08-03Minor cleanups:Bill Meier1-62/+56
- Comment out code which creates two dissector tables and then stores a preference value in each of them; AFAICT the tables are not accessed elsewhere; - Comment out the no longer required prefs callback specification in proto_register; - "if (... == -1)" not req'd in proto_register; - Remove unused proto_reg_wimax function. svn path=/trunk/; revision=29283
2009-07-07From Kovarththanan Rajaratnam:Stig Bjørlykke8-15/+15
More FT_XXX cleanup. svn path=/trunk/; revision=28970
2009-06-22From Kovarththanan Rajaratnam:Stig Bjørlykke38-1607/+1607
More header field info cleanup in plugins/* and epan/dissectors/* svn path=/trunk/; revision=28811
2009-06-22From Kovarththanan Rajaratnam:Stig Bjørlykke38-9596/+9591
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
2009-05-13Apply some of the patches from:Anders Broman1-3/+1
http://wiki.wireshark.org/Development/Optimization svn path=/trunk/; revision=28355
2009-03-02Disable manifest building for our DLLs. This attempts to fix bug 3272.Gerald Combs1-3/+0
svn path=/trunk/; revision=27579
2009-02-02add missing mt.exe calls, to include manifest files into exe / dll filesUlf Lamping1-0/+3
svn path=/trunk/; revision=27357
2009-01-08Fix for bug 2902:Jaap Keuter12-58/+58
Actually check column status before writing to it. svn path=/trunk/; revision=27192
2008-12-22Fix some typos and spelling (mostly in text strings)Bill Meier4-12/+12
svn path=/trunk/; revision=27085
2008-08-29#include <prefs.h> not requiredBill Meier30-30/+0
svn path=/trunk/; revision=26103
2008-08-14From Frank Wang:Jaap Keuter1-3/+11
dl-map decoder error when decode HARQ_DLMAP_IE and normal IE. svn path=/trunk/; revision=26020