aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
AgeCommit message (Collapse)AuthorFilesLines
2009-08-09Add PTREE_FINFO and use PITEM_FINFO when possible.Kovarththanan Rajaratnam2-6/+6
svn path=/trunk/; revision=29355
2009-08-09(Trivial): Remove uneeded #includes; make a few fcns static;Bill Meier8-38/+6
svn path=/trunk/; revision=29353
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 Rajaratnam6-22/+6
svn path=/trunk/; revision=29346
2009-08-09Don't guard col_set_str (COL_INFO/COL_PROTOCOL) with col_checkKovarththanan Rajaratnam5-20/+5
svn path=/trunk/; revision=29345
2009-08-09Don't guard col_clear with col_checkKovarththanan Rajaratnam9-18/+9
svn path=/trunk/; revision=29344
2009-08-09Don't guard col_set_str (COL_INFO) with col_checkKovarththanan Rajaratnam2-5/+2
svn path=/trunk/; revision=29342
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-2/+1
svn path=/trunk/; revision=29341
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam17-46/+23
svn path=/trunk/; revision=29340
2009-08-08Check TLV lengths before we try to add them to the tree. Fixes bug 3824.Gerald Combs1-11/+25
svn path=/trunk/; revision=29338
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-03Remove a couple of unused variables.Gerald Combs1-4/+2
svn path=/trunk/; revision=29286
2009-08-03Add some null checks.Gerald Combs1-1/+45
svn path=/trunk/; revision=29285
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-08-03Various minor cleanups:Bill Meier1-263/+250
- Do all find_dissector() calls only once during proto_reg_handoff (not each time a sub-dissector is called when dissecting frames). - Move proto_register & proto_reg_handoff to the end of the file as per convention; - Move a global variables to be local; - Change a global variable to be static; - Remove unneeded multiple #include <string.h> - Remove an unneeded variable and a few unneeded lines of code. svn path=/trunk/; revision=29282
2009-08-03Use find_dissector() instead of create_dissector_handle();Bill Meier1-7/+6
Fix some indentation. svn path=/trunk/; revision=29273
2009-07-21From Benjamin Meyer:Anders Broman1-16/+572
Profinet dissector does not decode all defined error codes. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3753 svn path=/trunk/; revision=29150
2009-07-18From Kovarththanan Rajaratnam via bug 3719:Stig Bjørlykke1-9/+9
This patch optimizes proto_tree_prime_hfid() + friends and plugs a memleak in the process. From me: Removed unused hfindex in proto_tree_new_item() Fixed ref_count entry in struct header_field_info. svn path=/trunk/; revision=29137
2009-07-16From Rajasekhar Reddy Gali:Anders Broman1-67/+62
packet-wimaxasncp.c file need to update with latest wimax spec. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3730 svn path=/trunk/; revision=29125
2009-07-15Add /MP flag to make use of multi cores.Anders Broman1-1/+1
svn path=/trunk/; revision=29104
2009-07-07Removed header_field.hStig Bjørlykke1-1/+0
svn path=/trunk/; revision=28999
2009-07-07Fix the esl protocol enable/disable handling issue introduced in SVN #28986:Bill Meier1-14/+17
Use the standard "if (!initialized)..." logic in proto_reg_handoff(). Also: use "true_false_string flags_yes_no" as in the original patch. svn path=/trunk/; revision=28994
2009-07-07Various fixes:Bill Meier2-11/+14
1. For some reason: using an using the external tfs_yes_no doesn't work in a plugin; 2. proto_reg_handoff: remove unneeded code; 3. Change the prefs callback to call a function which just enables/disables the protocol; (using proto_reg_handoff means that the dissector was re-registered each time the pref was changed); 4. packet-esl.h: use #if 0 instead of /* ... */ to comment out code; svn path=/trunk/; revision=28986
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 Richard Kummel:Stig Bjørlykke4-30/+396
- New dissector for EtherCAT Switch Link Header added to EtherCAT plugin - Changed filtering of EtherCAT commands to the abbreviated form: e.g. ecat.cmd = APWR From me: - Mark unused variables - Fixed a string warning - Do not initialize a static struct - Use tfs_yes_no - Reorder files in Makefile svn path=/trunk/; revision=28976
2009-07-07From Kovarththanan Rajaratnam:Stig Bjørlykke18-32/+32
More FT_XXX cleanup. svn path=/trunk/; revision=28970
2009-07-07From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-10/+10
Minor hf cleanup. svn path=/trunk/; revision=28968
2009-07-07From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke2-1333/+1299
Move header_field.h into packet-unistim.c to align it with all other dissectors. svn path=/trunk/; revision=28967
2009-07-06fix install stepUlf Lamping1-1/+1
svn path=/trunk/; revision=28945
2009-07-03Make the compiler on Mac OS X happy...Michael Tüxen2-13/+13
svn path=/trunk/; revision=28934
2009-07-03update to the latest PROFINET draftsUlf Lamping2-42/+243
(defragmentation of RT fragments "FRAG-PDU" is still not implemented) svn path=/trunk/; revision=28932
2009-06-24From Kovarththanan Rajaratnam:Stig Bjørlykke1-9/+9
More hf_register_info related cleanup. svn path=/trunk/; revision=28832
2009-06-24From Kovarththanan Rajaratnam:Stig Bjørlykke1-180/+180
Move hf_register_info declarations in packet-m2m.c to function scope svn path=/trunk/; revision=28831
2009-06-22From Kovarththanan Rajaratnam:Stig Bjørlykke44-2070/+2070
More header field info cleanup in plugins/* and epan/dissectors/* svn path=/trunk/; revision=28811
2009-06-22From Kovarththanan Rajaratnam:Stig Bjørlykke44-10210/+10203
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-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke56-1486/+1486
Cleanup header_field_info in plugins. svn path=/trunk/; revision=28771
2009-06-15Trivial warning fixes:Jörg Mayer2-2/+2
- Might be used uninitialized - not a prototype - comma at end of enum svn path=/trunk/; revision=28730
2009-06-09Added missing $Id$ and convert to correct eol-style.Stig Bjørlykke1-162/+163
svn path=/trunk/; revision=28678
2009-06-05Have tap listeners specify whether the "packet" routine requiresGuy Harris2-8/+9
a protocol tree; the column values. This includes stats-tree listeners. Have the routines to build the packet list, and to retap packets, honor those requirements. This means that cf_retap_packets() no longer needs an argument to specify whether to construct the column values or not, so get rid of that argument. This also means that there's no need for a tap to have a fake filter to ensure that the protocol tree will be built, so don't set up a fake "frame" filter. While we're at it, clean up some cases where "no filter" was represented as a null string rather than a null pointer. Have a routine to return an indication of the number of tap listeners with filters; use that rather than the global num_tap_filters. Clean up some indentation and some gboolean vs. gint items. svn path=/trunk/; revision=28645
2009-05-19Get info about media type(Video or not) a first step towards usage in rtp ↵Anders Broman1-1/+1
statistics. svn path=/trunk/; revision=28415
2009-05-13Apply some of the patches from:Anders Broman3-8/+3
http://wiki.wireshark.org/Development/Optimization svn path=/trunk/; revision=28355
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-05-01From Reinhard Speyerer:Jaap Keuter1-1/+1
This patch fixes several misspellings/typos in Wireshark SVN revision 28201. svn path=/trunk/; revision=28205
2009-05-01From Reinhard Speyerer:Jaap Keuter2-2/+2
This patch fixes several misspellings/typos in Wireshark SVN revision 28201. svn path=/trunk/; revision=28204
2009-04-16Fix Win64 compilation problems in the plugins directory.Gerald Combs8-16/+25
svn path=/trunk/; revision=28064
2009-04-08(Trivial) Fix some spelling & etc in commentsBill Meier1-1/+1
svn path=/trunk/; revision=27996
2009-04-06Add missing header file of OpcUa plugin update.Jaap Keuter2-1/+187
svn path=/trunk/; revision=27978