aboutsummaryrefslogtreecommitdiffstats
path: root/epan
AgeCommit message (Collapse)AuthorFilesLines
2011-04-14Via bug5774, Andrew Feren requested V9TEMPLATE_MAX_FIELDS be increased to 100.Chris Maynard1-2/+2
svn path=/trunk/; revision=36633
2011-04-13From Solomon Peachy:Fix "Missing indication that we recognize the Radiotap ↵Bill Meier1-0/+3
MCS header field." https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5827 The radiotap header has a pile of optional fields, and uses a bitmask field to indicate which fields are present. Wireshark marks the fields it decodes, and then decodes the payload. The recently-added MCS field is decoded now, but the bit is not displayed as recognized. This was presumably an oversight, as this bit is recognized and the field decoded properly. svn path=/trunk/; revision=36632
2011-04-13Don't assign to a proto_item * if the value won't be used: Coverity 1054-1056.Bill Meier1-5/+4
svn path=/trunk/; revision=36631
2011-04-13Comment out code to create a subtree since it's (currently ?) unused: ↵Bill Meier1-21/+19
Coverity 1039; Don't assign to a proto_item * if the value won't be used: Coverity 1040 & 1041. Remove some unneede #includes; Do some minor indentation & whitespace cleanup. svn path=/trunk/; revision=36630
2011-04-13Allow TCP segment data to be filterable via "tcp.data".Chris Maynard1-10/+15
svn path=/trunk/; revision=36629
2011-04-13Update to reflect recent changes in epan/strutil.[ch].Gerald Combs1-2/+2
svn path=/trunk/; revision=36628
2011-04-13Change ws_strdup_escape_underscore() function to be more general, byStephen Fisher2-18/+20
accepting any character as the escaped character. Change existing uses to use '_' for the underscore escaping. svn path=/trunk/; revision=36627
2011-04-13Add Tag Quiet (40) and IBSS DFS (41)Alexis La Goutte1-39/+172
Enhance Tag ERP Information (42), TS Delay (43), TCLAS Processing (44) * Replace proto_tree_add_uint*/boolean/text by proto_tree_add_item * use ENC_* macro for encoding svn path=/trunk/; revision=36625
2011-04-13Rollback r36614 and change dissect_SMUX_PDUs_PDU() to use previouslyStephen Fisher1-4/+5
unused smux_tree instead of tree. Per suggestion from Stig on -dev. svn path=/trunk/; revision=36624
2011-04-13+ Fix bug listed in CID 1182:Jörg Mayer1-165/+164
Move test out of switch statement. Remove unused variable. Remove trailing whitespace. Whitespace in that file is a mess. svn path=/trunk/; revision=36621
2011-04-12Fix Coverity 524: NEGATIVE_RETURNSStephen Fisher1-2/+2
Coverity sees that two calls to tvb_length_remaining() with an offset of 0 may return -1 (for an "out of bounds" condition), which would lead to an assignment of -1 to an unsigned variable and then passing it to functions further down that cannot accept negative values. Use tvb_ensure_length_remaining() to throw an exception in a case of out of bounds access (though unlikely with an offset of 0) instead of tvb_length_remaining(), which would return -1. svn path=/trunk/; revision=36615
2011-04-12Fix Coverity 1047: UNUSED_VALUE in dissect_smuxStephen Fisher1-4/+3
svn path=/trunk/; revision=36614
2011-04-12Cleanup ProcessError().Stig Bjørlykke1-11/+6
Coverity 865. svn path=/trunk/; revision=36610
2011-04-12Regenerate more ASN.1 dissectors for Coverity.Gerald Combs6-120/+120
svn path=/trunk/; revision=36609
2011-04-12Add x509if_frame_end() which is passed to register_frame_end_routine()Gerald Combs2-49/+71
and which resets our global variables. Remove a boolean which was used to track a char *; just check if the pointer is NULL instead. Fixes bugs 5754 and 5793, hopefully without breaking anything. svn path=/trunk/; revision=36608
2011-04-12Put back in one of the includes removed in r36606: ctype.h for isdigit()Stephen Fisher1-0/+2
function. svn path=/trunk/; revision=36607
2011-04-12Don't assign to a proto_item * if the value won't be used: Coverity 1034;Bill Meier1-32/+28
Comment out two calls to tvb_)get_ephemeral_string since the result is never used: Coverity 1035; Also: Remove some unneeded #includes; Use consistent indentation. svn path=/trunk/; revision=36606
2011-04-12Added a FALLTHRU comment to avoid a missing break warning.Stig Bjørlykke1-0/+1
Coverity 437. svn path=/trunk/; revision=36605
2011-04-12Don't assign to a variable if the value won't be used: Coverity 1002 & 1003.Bill Meier1-3/+3
svn path=/trunk/; revision=36604
2011-04-12Fix two instances of apparent use of incorrect tree: Coverity 982 & 983;Bill Meier1-1423/+1421
Remove an uneeded line of code: Coverity 984; #include <string.h> not needed; Use consistent indentation & do other whitespace cleanup. svn path=/trunk/; revision=36603
2011-04-12Removed some unused variables.Stig Bjørlykke1-8/+7
svn path=/trunk/; revision=36602
2011-04-12Use g_snprintf instead of sprintf: (Part of) Covertiy 665.Chris Maynard1-1/+1
svn path=/trunk/; revision=36600
2011-04-12Use g_strlcat instead of strcat: Coverity 632.Chris Maynard1-8/+8
svn path=/trunk/; revision=36598
2011-04-12Don't assign to a proto_item * if the value won't be used: Coverity 978;Bill Meier1-29/+32
Use what appears to be the intended correct tree for various proto_add...: Coverity 979; Minor indentation cleanup. svn path=/trunk/; revision=36594
2011-04-12Comment out some (currently ?) unused code: Coverity 969-971;Bill Meier1-1550/+1550
Fix up whitespace & indentation (e.g., "4 space tabs"). svn path=/trunk/; revision=36592
2011-04-12Don't assign to a proto_item * if the value won't be used: Coverity 954 & 955;Bill Meier1-14/+9
Remove some unneeded #includes; Minor whitespace cleanup. svn path=/trunk/; revision=36589
2011-04-12Don't assign to a proto_item * if the value won't be used: Coverity 933;Bill Meier1-4/+3
Fix apparent use of incorrect tree: Coverity 934. svn path=/trunk/; revision=36588
2011-04-12Don't assign to a proto_item * if the value won't be used: Coverity 916-918;Bill Meier1-101/+100
Also: use consistent indentation. svn path=/trunk/; revision=36587
2011-04-12Fix a few cases of proto_item_add_subtree() using the wrong tree: Coverity ↵Bill Meier1-29/+29
916-918; Also: Fix some indentation: e.g., "4 space tabs". svn path=/trunk/; revision=36585
2011-04-12Corrected switch-case flow.Stig Bjørlykke1-1/+1
Coverity 1184. svn path=/trunk/; revision=36579
2011-04-11Regenerate the ANSI MAP, LDAP, and TETRA dissectors so that Coverity canGerald Combs6-162/+162
locate their template files. svn path=/trunk/; revision=36569
2011-04-11Don't assign to a proto_item* that is not used before being overwritten.Martin Mathieson1-1/+1
Coverity 1017. svn path=/trunk/; revision=36566
2011-04-11Show Segment offset number in AM header root item.Martin Mathieson1-1/+1
svn path=/trunk/; revision=36565
2011-04-11- for UL/DL HARQ, show number of ms since previous txMartin Mathieson1-4/+66
- for SR state-machine problems, show UEId in report - incomplete beginnings of support for grouping/counting UEs per TTI svn path=/trunk/; revision=36564
2011-04-11Neither checksum_item nor length are used uninitialized, but for some reason,Chris Maynard1-2/+2
the OSX buildbots think they can be. Initialize them to avoid a build failure. svn path=/trunk/; revision=36562
2011-04-11Add conversation tracking and tshark tap support to ICMPv6. Fixes bug 5810.Chris Maynard1-45/+233
TODO: Add a Wireshark tap or look into possibly using the stats tree instead. Also, like ICMP, the ICMPv6 payload appears to carry the sender's timestamp, so it might be possible to make use of this information to estimate the total SRT. (See bug 5770 for more details.) svn path=/trunk/; revision=36561
2011-04-11CID 898: Remove a not really used variableJörg Mayer1-3/+2
svn path=/trunk/; revision=36560
2011-04-11Fix coverity CID 855: remove an unused variableJörg Mayer1-2/+2
svn path=/trunk/; revision=36559
2011-04-11Don't assign to a proto_item * if the value won't be used: Coverity 1036;Bill Meier1-377/+369
Fix what appears to be a use of an incorrect tree: Coverity 1037; Also: - Remove uneeded #includes & re-order #includes; - Do indentation and whitespace cleanup (e.g., "4 space tabs"). svn path=/trunk/; revision=36558
2011-04-11Don't assign to a proto_item * if the value won't be used: Coverity 912 & 913.Bill Meier1-4/+4
svn path=/trunk/; revision=36557
2011-04-11Don't assign to a variable if the value won't be used: Coverity 964 & 965;Bill Meier1-2953/+2952
Also: - Move proto_register...() & proto_reg_handoff...() to the end of the file; - Remove some unneeded #includes; - Do some indentation and whitespace cleanup (e.g., "4-space tabs"). svn path=/trunk/; revision=36556
2011-04-11Don't assign to a proto_item * if the value won't be used: Coverity 928-932;Bill Meier1-8/+5
Also: remove some unneeded #includes. svn path=/trunk/; revision=36555
2011-04-11Add proto_field_is_referenced. Fixes bug 5816.Chris Maynard1-0/+1
svn path=/trunk/; revision=36554
2011-04-11Use g_strlcpy() instead of prohibited strncpy() to guarantee NULL-termination.Chris Maynard1-1/+1
svn path=/trunk/; revision=36553
2011-04-10Rename ws_stat to ws_stat64, and make it take a pointer to a ws_statb64Guy Harris2-19/+19
as an argument, along the lines of ws_fstat64, and, on Windows, make it use _wstati64, to handle 64-bit file sizes. svn path=/trunk/; revision=36547
2011-04-10strcpy -> strncpy.Stig Bjørlykke1-1/+1
Coverity 669. svn path=/trunk/; revision=36543
2011-04-101.5.1 → 1.5.2. Reenable Babel.Gerald Combs1-0/+1
svn path=/trunk/; revision=36540
2011-04-10Build 1.5.1. Temporarily disable the Babel dissector.Gerald Combs1-1/+0
svn path=/trunk/; revision=36537
2011-04-10Minor whitespace fix.Gerald Combs1-1/+1
svn path=/trunk/; revision=36536
2011-04-10[Automatic manuf, services and enterprise-numbers update for 2011-04-10]Gerald Combs1-5/+129
svn path=/trunk/; revision=36534