aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bitcoin.c
AgeCommit message (Collapse)AuthorFilesLines
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