aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bitcoin.c
AgeCommit message (Collapse)AuthorFilesLines
2014-06-18Fixup: tvb_* -> tvb_capturedDario Lombardo1-3/+3
Change-Id: I9209c1271967405c34c1b6fa43e1726a4d3a5a3f Reviewed-on: https://code.wireshark.org/review/2377 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2013-12-13Remove _U_Chris Maynard1-1/+1
svn path=/trunk/; revision=54054
2013-11-10Add missing includes in order to remove exceptions.h from proto.h (next commit).Jakub Zawadzki1-0/+1
svn path=/trunk/; revision=53230
2013-11-09Add data parameter to tcp_dissect_pdus() as well as convert it to using ↵Michael Mann1-4/+5
"new" style dissectors. Now that "bytes consumed" can be determined, should tcp_dissect_pdus() take advantage of that? Should tcp_dissect_pdus return length (bytes consumed)? There are many dissectors that just call tcp_dissect_pdus() then return tvb_length(tvb). Seems like that could all be rolled into one. svn path=/trunk/; revision=53198
2013-11-07Add infrastructure for section-initializing protocol hfis (without array).Jakub Zawadzki1-0/+2
configure implementation later. svn path=/trunk/; revision=53146
2013-10-16Remove trailing blanks; Fix some indentation;Bill Meier1-3/+3
Add editor modelines. svn path=/trunk/; revision=52653
2013-10-15Fix the bitcoin dissector to be able to dissect recent version of the ↵Michael Mann1-30/+68
protocol. Bug 8844 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8844) Changes: - All messages now have a checksum (and not only version and verack). - In the version message: user agent added as a string preceded by a varint length. - Port in an address is in little endian and not big endian. - In the version message the receiving and emitting address where inverted. From Eric Masson svn path=/trunk/; revision=52609
2013-08-30bitcoin, gif: pass header_field_info to proto_tree_*.Jakub Zawadzki1-465/+459
svn path=/trunk/; revision=51606
2013-07-03Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-1/+0
svn path=/trunk/; revision=50346
2013-05-25Batch of filterable expert_infos.Michael Mann1-1/+12
svn path=/trunk/; revision=49581
2013-03-14[-Wmissing-prototypes]Anders Broman1-0/+3
explicit casts. svn path=/trunk/; revision=48293
2013-02-13Cleanup:Bill Meier1-185/+285
- Fix various message handler message dissection bugs; - Change all loops with a potentially large loop count to be done only when 'tree' is non-null; - Simplify code somewhat; - Do some whitespace and formatting style changes. svn path=/trunk/; revision=47647
2013-02-11Fixes/Updates:Bill Meier1-117/+122
- Call conversation_set_dissector(); - Fix encoding args related to use of FT_ABSOLUTE_TIME; - Remove unneeded #include; - Cleanup some whitespace. svn path=/trunk/; revision=47631
2013-02-11Add an if (tree) check to prevent a very-long-but-not-infinite loop,Evan Huus1-8/+19
since without a tree the proto_tree_add_item calls won't throw an exception when we run past the end of our TVB which means we could end up doing MAX_INT64 iterations. Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8312 svn path=/trunk/; revision=47629
2013-02-10Add svn properties and modelines.Evan Huus1-1144/+1156
svn path=/trunk/; revision=47608
2013-02-10Add Bitcoin dissectorMichael Mann1-0/+1144
From Christian Svensson, bug 6000 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6000) Cleaned up from the original patch svn path=/trunk/; revision=47606