aboutsummaryrefslogtreecommitdiffstats
path: root/epan
AgeCommit message (Expand)AuthorFilesLines
2013-10-15Check the length *before* accessing the array, and cap theEvan Huus1-1/+7
2013-10-15Fix a length check in the OID code, we add an extra byte if is_first, not theEvan Huus1-1/+3
2013-10-15Factor out common parts of ABI checks to UseABICheck.cmakeBalint Reczey1-14/+6
2013-10-15Fix Coverity CID 1106801: Missing break in switch.Chris Maynard1-0/+1
2013-10-15Fix the bitcoin dissector to be able to dissect recent version of the protoco...Michael Mann1-30/+68
2013-10-14Reverting as requested by Jakub, eventhoug I don't think this prticular entry...Anders Broman1-3/+0
2013-10-14Replace XXX with explanation based on discussion with Jakub on -dev.Evan Huus1-2/+3
2013-10-14 Adding to col info is probably useless as next dissector will overwrite it.Anders Broman1-0/+3
2013-10-14Try to pptimize heuristics slightly.Anders Broman7-47/+62
2013-10-14Add dissection of NCM/MBIM data traffic based on data interface class protoco...Pascal Quantin2-2/+30
2013-10-14As reported by Didier Gautheron on -dev (http://www.wireshark.org/lists/wires...Pascal Quantin1-1/+1
2013-10-14TLS server key exchange misses sig and hash algorithm for TLS 1.2. Bug 9208 ...Michael Mann1-6/+80
2013-10-14DTLS server key exchange misses sig and hash algorithm for TLS 1.2. Bug 9208...Michael Mann1-6/+80
2013-10-13DRX: start to show state prior to and after current PDU.Martin Mathieson1-71/+96
2013-10-13As requested by Zoltán Lajos Kis, split the openflow dissector int one file ...Anders Broman4-422/+628
2013-10-13whitespace fixes; mostly: remove trailing blanksBill Meier195-2063/+2063
2013-10-13Minor whitespace changesBill Meier1-907/+907
2013-10-13Minor whitespace, formatting & etc changes.Bill Meier12-1733/+1695
2013-10-13When printing PDML, don't assume that all values with bitmasks are representedEvan Huus1-1/+23
2013-10-13Subsume README.binarytrees into wmem doxygen. The README was out of dateEvan Huus1-14/+59
2013-10-13openSAFETY: Dissection for second crc as well as plausability check. Bug 926...Michael Mann1-24/+108
2013-10-13Add CMake properties to targets so that they are logically organised when usi...Graham Bloice2-0/+11
2013-10-13Fix dissection of Home Provider CID and fix a typo errorPascal Quantin1-1/+2
2013-10-13So a while back Jeff added some code to check that the offset+length passed toEvan Huus3-44/+28
2013-10-13Order our conditionals to take advantage of the fact that we know tvb->length <=Evan Huus1-22/+14
2013-10-12Tweak/simplify some tvbuff length check functions slightly. In my benchmarks ofEvan Huus1-24/+12
2013-10-12Redo r52569 in a way that doesn't break the GUI. Add a mem_pool member toEvan Huus2-102/+55
2013-10-12Revert r52569, it breaks the GUI since that sometimes has multiple trees activeEvan Huus1-3/+17
2013-10-12If the offset is out of bounds, have tvb_length_remaining() and tvb_reported_...Chris Maynard2-7/+6
2013-10-12Don't assume that tvb_length_remaining() or tvb_reported_length_remaining() a...Chris Maynard1-8/+8
2013-10-12Use wmem_free_all on the tree pool rather than freeing each node, label andEvan Huus1-17/+3
2013-10-12Use a wmem block allocator to allocate field_infos, proto_nodes and item_labels.Evan Huus1-7/+13
2013-10-12From Todd Newton via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9262 :Pascal Quantin1-1/+1
2013-10-12We can't use proto_tree_add_uint_* for FT_TIME fields, use proto_tree_add_time_*Evan Huus1-4/+8
2013-10-12Based on help and suggestions from Johannes Berg, fix Radiotap Header decode theEvan Huus2-8/+5
2013-10-12From RobiOneKenobi via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9229Evan Huus2-0/+81
2013-10-12Free the actual struct, not the typedef thereof, because the typedef is actuallyEvan Huus1-1/+1
2013-10-12Solaris Studio C++ won't let us pass the address of main() toGerald Combs1-1/+1
2013-10-11Fix another fuzz failurePascal Quantin1-10/+16
2013-10-11Destroy dissector tables on shutdown and use epan scoped memory of handles.Evan Huus1-7/+18
2013-10-11Free all the heuristict dissector lists and their entries on shutdown, anotherEvan Huus1-6/+21
2013-10-11Fix compilation when we don't HAVE_LIBGCRYPTJeff Morriss1-1/+3
2013-10-10When TCP options are truncated, we only add the truncated length to the tree,Evan Huus1-1/+1
2013-10-10Fix an infinite loop detected during fuzz testingPascal Quantin1-11/+41
2013-10-10Try to make the build bot happy.Anders Broman1-1/+1
2013-10-10Flag the addresses used in the trace which has been resolved and only add tho...Anders Broman2-37/+44
2013-10-10Add a call to tvb_ensure_bytes_exist before we allocate memory based on ourEvan Huus1-5/+6
2013-10-10From Ed Beroset via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9246Evan Huus2-29/+36
2013-10-10From Marko Hrastovec viaEvan Huus1-1/+300
2013-10-10Safer to compare return value of tvb_reported_length_remaining() > 0 than != 0.Chris Maynard1-30/+30