aboutsummaryrefslogtreecommitdiffstats
path: root/epan
AgeCommit message (Expand)AuthorFilesLines
2013-07-02Differentiate "Disabled" from "Unknown" and provide macros for the enumerated...Michael Mann2-4/+9
2013-07-02Add proto_tree_add_expert and proto_tree_add_expert_format. This was added t...Michael Mann2-2/+84
2013-07-02Rewrite proto_lookup_or_create_interesting_hfids() and rename to proto_data_a...Jakub Zawadzki1-27/+13
2013-07-02Micro-optimize common case for proto_tree_add_pi() assume tree != NULL, pfi !...Jakub Zawadzki1-11/+9
2013-07-02tree == NULL check is already done by TRY_TO_FAKE_THIS_ITEM() macro.Jakub Zawadzki1-3/+0
2013-07-02Remove not needed TRY_TO_FAKE_THIS_ITEM() from proto_tree_*_format & proto_tr...Jakub Zawadzki1-244/+180
2013-07-02cleanup, put result of decode_bitfield_value directly to fi->rep->representationJakub Zawadzki1-13/+9
2013-07-02Remove dependency on proto_malformed as it should be encapsulated in expert i...Michael Mann1-9/+7
2013-07-02Add TRY_TO_FAKE_THIS_REPR into proto_tree_set_representation_value() call.Jakub Zawadzki1-40/+11
2013-07-02Cache the malformed filter instead of looking it up each time a malformed pac...Michael Mann1-1/+4
2013-07-02From Roland Knall via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8878 :Jeff Morriss1-43/+43
2013-07-02snprintf -> strlcpy.Jakub Zawadzki1-5/+4
2013-07-01Make expert items filterable and a little cleanup.Michael Mann1-184/+142
2013-07-01From Fabio Tarabelloni viaEvan Huus1-20/+15
2013-07-01From Javier Godoy via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8832Evan Huus1-135/+450
2013-07-01Do whitespace cleanup;Bill Meier1-123/+171
2013-07-01Remove unused parameters.Evan Huus1-10/+5
2013-07-01Made an attempt at making all TCP expert info filterable. Many of the expert...Michael Mann1-265/+99
2013-07-01Define certain 'const char *...' arrays as static.Bill Meier3-4/+4
2013-07-01Cleanup fill_label_[u]int64 to fill_label_number64Jakub Zawadzki1-32/+14
2013-07-01Fix Coverity CID 1040373 (Dereference before null check). Minor whitespace c...Chris Maynard1-63/+63
2013-07-01From Roland Knall via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8877 :Jeff Morriss1-0/+4
2013-07-01Revert r50287: the P1 dissector isn't clean yet ('dissect_p1_T_report_type' d...Jeff Morriss1-1/+1
2013-07-01Define certain 'const char *...' arrays as static.Bill Meier18-73/+75
2013-07-01Fix typo in retrieving h263 dissector. Bug 7893 (https://bugs.wireshark.org/...Michael Mann1-1/+1
2013-07-01Rewrite hfinfo_numeric_value_format as a special case for _hfinfo_number_valu...Jakub Zawadzki1-157/+63
2013-07-01Fix Coverity CID 1025626 (Unintentional integer overflow) by declaring 1 as a...Chris Maynard1-28/+28
2013-07-01Fix Coverity CID 712348 (Unused pointer value).Chris Maynard1-1/+1
2013-07-01packet-p1.c should now be clean.Guy Harris1-1/+1
2013-07-01Squelch some warnings.Guy Harris3-10/+10
2013-07-01Get rid of variable, 'end'.Chris Maynard1-3/+1
2013-07-01Return from dissect_at_command() immediately if tvb_length_remaining() return...Chris Maynard1-5/+11
2013-07-01Fix Coverity CID 1040372 (Printf arg count mismatch) by eliminating the doubl...Chris Maynard1-2/+2
2013-07-01There are a few dissectors that pass the return value of tvb_length_remaining...Chris Maynard1-9/+12
2013-07-01Fix Coverity CID 1040636 (Out-of-bounds read) by changing the loop terminatio...Chris Maynard1-5/+3
2013-07-01Fix Coverity CID's 1037112, 1037113 and 1040635 (Explicit null dereferenced).Chris Maynard1-272/+253
2013-07-01A better fix than r50278.Chris Maynard1-36/+32
2013-07-01Realized that Coverity would have still complained about "explicit null deref...Chris Maynard1-46/+53
2013-07-01Consistently maintain the callState member of an iax2_info_t structureGuy Harris1-2/+46
2013-07-01Use tvb_reported_length_remaining() instead of tvb_length_remaining().Chris Maynard1-13/+15
2013-07-01Fix Coverity CID 280550 (Dereference null return value) by checking that ieee...Chris Maynard1-7/+12
2013-07-01Fix Coverity CID 1040370 (Explicit null dereferenced) by removing the if (tre...Chris Maynard1-46/+38
2013-06-30From David Richards via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8...Jeff Morriss1-4/+18
2013-06-30Declare slist[] as static (reduces storage & code executed: *See below);Bill Meier1-5/+5
2013-06-30Batch of filterable expert infos.Michael Mann6-46/+119
2013-06-30From Cal Turney via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8876 :Jeff Morriss1-5/+8
2013-06-30Actually initialize the localhost ethernet address before settingJeff Morriss1-2/+7
2013-06-30Add a cast to squelch a warning.Jeff Morriss1-2/+2
2013-06-30Fix up a mixup of the declaration of hf_vnc_auth_error_length andJeff Morriss1-2/+2
2013-06-30From Matthias Benesch via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id...Jeff Morriss1-18/+1102