aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/docsis
AgeCommit message (Collapse)AuthorFilesLines
2011-02-08Rename some hf_... vars so name starts with hf_docsis_cmstatusBill Meier1-77/+77
svn path=/trunk/; revision=35873
2011-02-08#if 0 code related to unused "docsis" dissector table;Bill Meier6-3369/+3307
Use consistent indentation & other whitespace cleanup. svn path=/trunk/; revision=35869
2011-02-07From Hendrik Robbel:Jaap Keuter3-0/+294
Dissector for DOCSIS 3.0 CM-STATUS Report Messages. svn path=/trunk/; revision=35866
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
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris43-44/+44
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-12-16There is no exceptions.h file here, remove it from DISSECTOR_INCLUDES.Jeff Morriss1-2/+1
svn path=/trunk/; revision=35201
2010-12-16From Guido Reismueller:Jaap Keuter14-7/+4192
packet-mdd.c - TLV 15 fixed packet-tlv.c - Added Support for DOCSIS 3.0 TLVs (38-66) Added Support for the following DOCSIS 3.0 MAC Management Messages - DBC-REQ (packet-dbcreq.c) - DBC-RSP (packet-dbcrsp.c) - DBC-ACK (packet-dbcack.c) - CM-CTRL-REQ (packet-cmctrlreq.c) - CM-CTRL-RSP (packet-cmctrlrsp.c) - DPV-REQ (packet-dpvreq.c) - DPV-RSP (packet-dpvrsp.c) svn path=/trunk/; revision=35193
2010-10-17Remove some unused hf entries.Stig Bjørlykke28-168/+0
svn path=/trunk/; revision=34549
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-24Replace blurbs that match the name (case insensitive) with NULL.Jeff Morriss1-1/+1
svn path=/trunk/; revision=34231
2010-09-23Replace blurbs that match the name (case insensitive) with NULL.Jeff Morriss3-13/+13
svn path=/trunk/; revision=34227
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-09-21As suggested by Kovarththanan Rajaratnam in ↵Jeff Morriss1-5/+5
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3548 : Clean up hf fields some more: mostly removing leading and trailing spaces from names and blurbs. svn path=/trunk/; revision=34165
2010-05-14Synchronize Makefiles even more.Jaap Keuter1-0/+1
svn path=/trunk/; revision=32808
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-06Don't use %s as the format string in val_to_str().Jeff Morriss8-9/+9
svn path=/trunk/; revision=32400
2010-04-06Don't use %s as the format string in val_to_str(). This fixes the fuzz ↵Jeff Morriss1-1/+1
failure in bug 4646. svn path=/trunk/; revision=32398
2010-04-06The third argument to val_to_str() is a format string that gets passedGuy Harris1-4/+1
the value that couldn't be mapped to a string - it's an integer and needs to be printed with an integer format. Fixes bug 4644. svn path=/trunk/; revision=32396
2010-04-05Get rid of a bunch of check_col().Anders Broman23-132/+63
svn path=/trunk/; revision=32388
2010-03-18cmake changes:Jörg Mayer1-3/+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/+3
- 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-13From Didier Gautheron:Anders Broman9-9/+0
col_clear.diff Remove calls to col_clear : - called twice. - before functions which also clear the column - by replacing col_clear + col_append_xxx with col_add_xxx https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4394 svn path=/trunk/; revision=31517
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 Broman14-54/+53
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-09-24Remove check_col() guardKovarththanan Rajaratnam8-31/+7
svn path=/trunk/; revision=30124
2009-09-23Use col_set_str instead of col_add_fstr/col_add_str when adding constant ↵Kovarththanan Rajaratnam1-2/+1
strings to COL_INFO svn path=/trunk/; revision=30089
2009-09-23Don't col_clear() followed by col_set_str(). A col_set_str() will clear ↵Kovarththanan Rajaratnam8-8/+0
(replace) any existing string (the fence still needs to be respected though) svn path=/trunk/; revision=30086
2009-09-22Use col_set_str instead of col_add_fstr when adding constant strings to COL_INFOKovarththanan Rajaratnam8-11/+8
svn path=/trunk/; revision=30082
2009-09-21CMake:Jörg Mayer1-0/+6
- Add opcua to the list of plugins to build - Link the gtk stuff statically into wireshark - Beginnings of "make install" - Change a few things about install paths svn path=/trunk/; revision=30029
2009-09-16Build a few more pluginsJörg Mayer1-0/+103
svn path=/trunk/; revision=29942
2009-09-13Run checkapi on the dissector header filesJeff Morriss2-2/+2
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-21Remove unneeded #includes.Jaap Keuter1-2/+0
svn path=/trunk/; revision=29496
2009-08-21Remove unneeded #includes.Jaap Keuter2-92/+0
svn path=/trunk/; revision=29495
2009-08-21(Minor) Remove unneeded #includes.Bill Meier35-268/+1
svn path=/trunk/; revision=29492
2009-08-20From Geoffrey Kimball:Jaap Keuter4-0/+181
DOCSIS 3.0 includes a new Bonded Initial Ranging Request (B-INIT-RNG-REQ) MAC Management type (34). A simple dissector is needed to decode this message. svn path=/trunk/; revision=29487
2009-08-16Switch a bunch of dissectors over to using tvb_new_subset_remaining()Kovarththanan Rajaratnam15-15/+15
svn path=/trunk/; revision=29446
2009-08-09Don't guard col_clear with col_checkKovarththanan Rajaratnam1-2/+1
svn path=/trunk/; revision=29344
2009-08-09Don't guard col_set_str (COL_INFO) with col_checkKovarththanan Rajaratnam1-2/+1
svn path=/trunk/; revision=29342
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam2-4/+2
svn path=/trunk/; revision=29340
2009-07-07From Kovarththanan Rajaratnam:Stig Bjørlykke4-4/+4
Remove trailing spaces in protocol/field names svn path=/trunk/; revision=28978
2009-07-07From Kovarththanan Rajaratnam:Stig Bjørlykke5-9/+9
More FT_XXX cleanup. svn path=/trunk/; revision=28970
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke34-305/+305
Cleanup header_field_info in plugins. svn path=/trunk/; revision=28771
2009-06-09Added missing $Id$ and convert to correct eol-style.Stig Bjørlykke1-162/+163
svn path=/trunk/; revision=28678
2009-05-08FT_BOOLEAN fields w/o bitmasks really should use BASE_NONE (not BASE_DEC,...).Bill Meier1-11/+11
svn path=/trunk/; revision=28318
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