aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
AgeCommit message (Collapse)AuthorFilesLines
2012-06-13Create, and start using, file name preferences.Jeff Morriss2-8/+8
File name preferences are basically just string preferences except that the GUI will present a "Browse" button that allows the user to go and find the file s/he wants (rather than having to blindly type in the full path). svn path=/trunk/; revision=43228
2012-06-07Attempt to fix display of "eoe macfilter header".Bill Meier1-7/+19
Among other things: fix incorrect 'display' value in several hf[] entries. (See XXX coments in source for further details). Attempt to fix use of incorrect value in hf[] entry 'display' fields svn path=/trunk/; revision=43149
2012-06-05Fix Coverity 702421: Handle the possibility that fvalue_to_string_repr()Jeff Morriss1-1/+6
may return NULL. svn path=/trunk/; revision=43114
2012-06-04Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-1/+59
svn path=/trunk/; revision=43088
2012-06-02From Martin Kaiser via ↵Pascal Quantin1-0/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7322 : Add a missing break in packet-bpkmattr.c (CID 280484) svn path=/trunk/; revision=43007
2012-06-01No more GIOP plugins, so get rid of the directory for the former plugins.Guy Harris13-789/+0
svn path=/trunk/; revision=42978
2012-06-01Make packet-coseventcomm.c a bultin dissectorAnders Broman1-768/+0
svn path=/trunk/; revision=42976
2012-06-01Make packet-coseventcomm.c a bultin dissectorAnders Broman2-2/+0
svn path=/trunk/; revision=42974
2012-06-01Set Makefile.common as a plugin.c dependency so plugin.c is rebuilt if ↵Bill Meier13-13/+13
Makefile.common is changed svn path=/trunk/; revision=42972
2012-06-01Windows: Set Makefile.common as a plugin.c dependency so plugin.c is rebuilt ↵Bill Meier13-26/+26
if Makefile.common is changed ToDo: ditto for Makefile.am ? svn path=/trunk/; revision=42971
2012-06-01Make the cosnaming dissector a builtin dissector.Anders Broman3-1578/+1
svn path=/trunk/; revision=42968
2012-06-01Make the tango dissector a builtin dissector.Anders Broman3-4414/+1
svn path=/trunk/; revision=42967
2012-06-01parlay changes to CmakeAnders Broman1-18/+0
svn path=/trunk/; revision=42965
2012-06-01Make the parlay dissector a buil tin dissector.Anders Broman2-105136/+0
svn path=/trunk/; revision=42964
2012-05-30Dissable -WerrorAnders Broman1-3/+3
svn path=/trunk/; revision=42928
2012-05-30Forgot to change the name to giopAnders Broman1-8/+6
svn path=/trunk/; revision=42927
2012-05-30Add files to use 'new plugin build style'Anders Broman9-125/+267
svn path=/trunk/; revision=42924
2012-05-21Cleanup whitespace;Bill Meier1-545/+1913
Reformat hf[] entries. svn path=/trunk/; revision=42748
2012-05-21Init some variables to prevent scan-build "Function call argument is an ↵Bill Meier1-4/+4
uninitialized value" messages. (Not actually a bug due to the way the code works ?) svn path=/trunk/; revision=42747
2012-05-11Get rid of remaining Booleans-as-encoding-arguments inGuy Harris1-11/+11
proto_tree_add_item() calls. svn path=/trunk/; revision=42590
2012-05-11Show m2m.fch_burst_tlv_value in decimal.Guy Harris1-1/+1
svn path=/trunk/; revision=42589
2012-05-11Get rid of remaining Booleans-as-encoding-arguments inGuy Harris1-4/+18
proto_tree_add_item() calls. Add hf[] entries for some fields that didn't have them. svn path=/trunk/; revision=42588
2012-05-11Get rid of remaining Booleans-as-encoding-arguments inGuy Harris1-1/+1
proto_tree_add_item() calls. svn path=/trunk/; revision=42587
2012-05-11Get rid of remaining Booleans-as-encoding-arguments inGuy Harris2-22/+22
proto_tree_add_item() calls. Clean up indentation. svn path=/trunk/; revision=42586
2012-05-11Get rid of remaining Booleans-as-encoding-arguments inGuy Harris1-5/+21
proto_tree_add_item() calls. Also, fix the type of what appears to be a 24-bit integral field (cut-and-pasteo?). svn path=/trunk/; revision=42585
2012-05-11Get rid of remaining Booleans-as-encoding-arguments inGuy Harris1-9/+9
proto_tree_add_item() calls. svn path=/trunk/; revision=42584
2012-05-11Get rid of remaining Booleans-as-encoding-arguments inGuy Harris1-2/+2
proto_tree_add_item() calls. svn path=/trunk/; revision=42583
2012-05-11Get rid of remaining Booleans-as-encoding-arguments inGuy Harris1-36/+304
proto_tree_add_item() calls. svn path=/trunk/; revision=42582
2012-05-10Better fixes for the last commit.Gerald Combs2-6/+4
svn path=/trunk/; revision=42529
2012-05-09Fix a few scan-build warnings.Gerald Combs5-17/+12
svn path=/trunk/; revision=42528
2012-05-05AFAICT '#include sys/types.h' is not needed for these files.Bill Meier8-38/+0
svn path=/trunk/; revision=42446
2012-05-05From Nhi Nguyen:pascal1-2/+2
OPC UA bytestring node id decoding is wrong https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7226 svn path=/trunk/; revision=42437
2012-05-02From Gabor Somlai:Anders Broman1-0/+1
Decoding DOCSIS 3.0 Isolation DATA frames (FC_TYPE=10). https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7214 svn path=/trunk/; revision=42382
2012-04-30The message length isn't needed in cmd_sched_rep() - it's just theGuy Harris1-8/+0
containing packet length, so if we go past it, we'll get an exception thrown. Get rid of it. The answer to "Should msglen be returned instead of offset?" is "no" - the command dissectors return the new offset. Get rid of an unused - and unnecessary - variable. svn path=/trunk/; revision=42367
2012-04-30Fix a couple of clang warnings and adjust capitalization.Gerald Combs1-3/+3
svn path=/trunk/; revision=42358
2012-04-28Initialize u32RecDataLen to 0 to avoid a clang warning and in the event it ↵Chris Maynard1-1/+1
never gets initialized in either dissect_IODWriteReqHeader_block() or dissect_IODReadReqHeader_block(). svn path=/trunk/; revision=42325
2012-04-27As suggested in ↵Jeff Morriss1-3/+3
http://www.wireshark.org/lists/wireshark-dev/201204/msg00062.html : Don't use ENC_BIG_ENDIAN or ENC_LITTLE_ENDIAN with ENC_ASCII: ASCII has no endianism, so ENC_NA is more appropriate. svn path=/trunk/; revision=42300
2012-04-27Fix Malformed packet AMS for Read Device Info Read State Request.Anders Broman1-3/+25
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6710 check if data exists. svn path=/trunk/; revision=42292
2012-04-27Fix value of "Error in Parameter API"Jakub Zawadzki1-1/+1
References: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3753#c3 svn path=/trunk/; revision=42285
2012-04-13Remove doubled semicolons and semicolons outside function.Jakub Zawadzki1-2/+2
svn path=/trunk/; revision=42053
2012-04-13From Pascal Quantin:Anders Broman1-5/+0
Fix Bug 6793 Some WiMAX messages decoded incorrectly https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6793 svn path=/trunk/; revision=42045
2012-04-10Add missing consts.Jakub Zawadzki3-3/+3
svn path=/trunk/; revision=42004
2012-04-09Add missing consts in opcua plugin.Jakub Zawadzki5-274/+274
svn path=/trunk/; revision=42000
2012-04-04Add a "-build" argument to checkAPIs.pl. Use that argument when buildingJeff Morriss31-31/+31
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-03-27Removed unused pdu_length in pdu_burst_decoder to avoid a warning from clang.Stig Bjørlykke1-4/+1
svn path=/trunk/; revision=41794
2012-03-27Added a check for a valid pointer to avoid a warning from clang.Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=41793
2012-03-19Set eol-style to native (just to make these files readable on *NIX).Jeff Morriss1-193/+193
svn path=/trunk/; revision=41654
2012-03-18From Reinhard Speyerer: Fix several misspellings/typos in WiresharkBill Meier4-6/+6
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6967 svn path=/trunk/; revision=41645
2012-02-24CVARSDLL hasn't been used (is undefined) for a while....Bill Meier2-2/+2
svn path=/trunk/; revision=41180
2012-02-09From Wido Kelling via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6819 :Jeff Morriss1-75/+75
Patch to fix channelproperty Maintanance decode. svn path=/trunk/; revision=40943