aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2013-12-07- Make local functions static.Anders Broman34-83/+173
- Forward declaration of register functions. svn path=/trunk/; revision=53821
2013-12-07Rename base_display_* to field_displayJakub Zawadzki7-37/+37
This is preparation to support ->display for FT_STRING values. svn path=/trunk/; revision=53820
2013-12-07Add new string proto encoding for windows-1250 (ENC_WINDOWS_1250)Jakub Zawadzki5-41/+75
- Move windows-1250 to unicode encoding table to charset.c - Add tvb_get_string_unichar2, tvb_get_stringz_unichar2 functions which recode tvb-string to UTF-8. svn path=/trunk/; revision=53819
2013-12-07Remove #if 0 inverse_bit_mask8 array.Jakub Zawadzki1-13/+0
It was only used by tvb_get_bits_buf (removed in r53183). svn path=/trunk/; revision=53818
2013-12-07- Make local functions static.Anders Broman17-16/+79
- Forward declaration of register function. svn path=/trunk/; revision=53817
2013-12-07Bluetooth enhancements. Bug 9446 ↵Michael Mann9-54/+355
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9446) Bluetooth: SCO: Add Source/Destination addresses Bluetooth: HCRP: Use information from SDP to decoding PSM payload From Michal Labedzki svn path=/trunk/; revision=53816
2013-12-06Move tvb_uncompress() to tvbuff_zlib.cJakub Zawadzki4-291/+325
svn path=/trunk/; revision=53815
2013-12-06Fix indent (use 4 spaces) Remove trailing whitespace Add ModelinesAlexis La Goutte1-188/+201
svn path=/trunk/; revision=53814
2013-12-06Add Modelines infoAlexis La Goutte1-0/+13
svn path=/trunk/; revision=53813
2013-12-06Fix (-W)unused-const-variable error found by ClangAlexis La Goutte1-0/+4
svn path=/trunk/; revision=53812
2013-12-06Update svn propertiesPascal Quantin2-1354/+1354
svn path=/trunk/; revision=53811
2013-12-06Add assoc_index to the properties that can be filtered.Irene Rüngeler2-3/+220
Find the association for each packet. svn path=/trunk/; revision=53810
2013-12-06From Thomas ERSFELD (GSoC13)Alexis La Goutte1-0/+2
Hiding monitor column when not available svn path=/trunk/; revision=53809
2013-12-06Fix warning when launch Qt PortAlexis La Goutte2-4/+5
QMetaObject::connectSlotsByName: No matching signal for on_tbInterfaces_hideEvent(QHideEvent*) QMetaObject::connectSlotsByName: No matching signal for on_tbInterfaces_showEvent(QShowEvent*) Object::connect: No such slot CaptureInterfacesDialog::tableItemPressed(QTableWidgetItem *) Object::connect: (sender name: 'tbInterfaces') Object::connect: (receiver name: 'CaptureInterfacesDialog') svn path=/trunk/; revision=53808
2013-12-06Fix ui/qt/capture_interfaces_dialog.ui: Warning: The name 'layoutWidget' ↵Alexis La Goutte1-10/+10
(QWidget) is already in use svn path=/trunk/; revision=53807
2013-12-06Fix wireshark/epan/dissectors/packet-j1939.c:313: multiple definition of ↵Alexis La Goutte1-1/+1
`proto_register_devicenet' svn path=/trunk/; revision=53806
2013-12-06Fix packet-j1939.c:160:42: error: declaration of 'address' shadows a global ↵Alexis La Goutte1-4/+4
declaration [-Werror=shadow] svn path=/trunk/; revision=53805
2013-12-06Fix unused parameter 'pinfo'Alexis La Goutte1-4/+4
svn path=/trunk/; revision=53804
2013-12-06Add DeviceNet and J1939 dissectors. Both run on top of CAN (not necessarily ↵Michael Mann9-36/+1424
always SocketCAN, but it did provide a good test environment) svn path=/trunk/; revision=53802
2013-12-05Only try to fix absolute Unix paths.Jörg Mayer1-3/+3
svn path=/trunk/; revision=53801
2013-12-05int -> gbooleanMartin Kaiser1-1/+1
svn path=/trunk/; revision=53800
2013-12-05dissect Operator Profile's error flagMartin Kaiser1-1/+13
svn path=/trunk/; revision=53799
2013-12-05Include epan/conv_id.h - some of the buildbot machines have errors without itMartin Mathieson1-0/+1
svn path=/trunk/; revision=53798
2013-12-05Make launching TCP graphs from conversations window work again, by supplying ↵Martin Mathieson4-4/+13
stream and direction when graph is first created svn path=/trunk/; revision=53797
2013-12-05Initialize the error-reporting routines before scanning for plugins, asGuy Harris7-32/+28
the code to scan for them uses those routines. This means epan_init() no longer takes those routines as arguments - which is just as well, given that the mechanism in question is no longer part of libwireshark, but is part of libwsutil. This should fix bug 9508. svn path=/trunk/; revision=53796
2013-12-05Remove non-ASCII characterPascal Quantin1-1/+1
svn path=/trunk/; revision=53795
2013-12-05Try to please OSX-10.5-x86 buildbotPascal Quantin1-1/+1
svn path=/trunk/; revision=53794
2013-12-05Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9503 :Pascal Quantin4-30/+89
Fix dissection of STK SEND SHORT MESSAGE proactive command svn path=/trunk/; revision=53793
2013-12-05CAN protocols have a CAN ID and up to 8 bytes of data. How the CAN ID and ↵Michael Mann2-72/+77
data are presented is the responsibility of the previous layer. Make the interface be passing the CAN ID in dissector data and have the (up to) 8 bytes be the tvb. CAN protocols should treat the CAN ID as "generated" data. svn path=/trunk/; revision=53792
2013-12-04Regenerate ASN.1 dissectorsJakub Zawadzki2-2/+2
It seems that around r53700 GenericChargingDataTypesV1171.asn was called 3GPPGenericChargingDataTypesV1171.asn. svn path=/trunk/; revision=53791
2013-12-04Finally successfully built with the msvc2010 GUI a DebugJörg Mayer1-0/+2
and a RelWithDebInfo build, after adding the missing path to the cygwin tools. svn path=/trunk/; revision=53790
2013-12-04- Forward declaration of register functions.Anders Broman1-0/+3
svn path=/trunk/; revision=53789
2013-12-04Try to fix a bunch of [-Wmissing-prototypes]Anders Broman2-93/+94
svn path=/trunk/; revision=53788
2013-12-04FixJörg Mayer1-1/+1
[ 5%] Building C object epan/CMakeFiles/epan.dir/dissectors/packet-diameter.c.o /home/jmayer/work/wireshark/svn/trunk/epan/dissectors/packet-diameter.c: In function ‘dissect_diameter_avp’: /home/jmayer/work/wireshark/svn/trunk/epan/dissectors/packet-diameter.c:621:37: error: ‘avp_str’ may be used uninitialized in this function [-Werror=maybe-uninitialized] if (avp_str) proto_item_append_text(avp_item," val=%s", avp_str); ^ cc1: all warnings being treated as errors make[2]: *** [epan/CMakeFiles/epan.dir/dissectors/packet-diameter.c.o] Error 1 svn path=/trunk/; revision=53787
2013-12-04- Make local functions static.Anders Broman1-4/+6
- Forward declaration of register function. svn path=/trunk/; revision=53786
2013-12-04"RFC 6733 [5] specifies the Experimental-Result AVP containing Vendor-Id AVP ↵Anders Broman2-2/+67
and Experimental-Result-Code AVP. The Experimental-Result-Code AVP (AVP Code 298) is of type Unsigned32 and contains a vendor-assigned value representing the result of processing a request." This means we have to store the value of the Vendor Id AVP in the grouped Experimental-Result AVP to be able to dissect the value of Experimental-Result-Code according to the vendor specified values(if known). This patch implements that with a dissector table to register vendor dissectors for the result code. svn path=/trunk/; revision=53785
2013-12-04From Michal Labedzki via ↵Chris Maynard1-11/+8
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9446 - r53051 introduced an incorrect DISSECTOR_ASSERT(acl_data), which led me to believe that acl_data must not be NULL. Except for the removal of the DISSECTOR_ASSERT(acl_data), this patch basically reverts r53735 and r53743, as acl_data can be NULL. svn path=/trunk/; revision=53784
2013-12-04From Matt TexierAlexis La Goutte1-53/+41
Enhance BGP Dissector : Communities Use proto_tree_add_item From me Missing space for well known community svn path=/trunk/; revision=53783
2013-12-04Ply parser updated to 3.5 (from GitHub github.com/dabeaz/ply)Tomas Kukosa2-119/+179
svn path=/trunk/; revision=53782
2013-12-04Add also heuristic for HTTPAlexis La Goutte1-0/+1
svn path=/trunk/; revision=53781
2013-12-04Create all binaries in one directory. After running setpath.batJörg Mayer1-2/+10
wireshark etc should now work, the basic stuff at least. Known problems/todos: - The plugins are not searched for in the current directory, so find out how to let Wireshark know to search for the plugins - Other supporting files are missing (COPYING.txt, AUTHORS*, ...) - Your missing feature could be listed here ;) Ciao Jörg svn path=/trunk/; revision=53780
2013-12-04Regenerate dissector after change to add prototypeAlexis La Goutte4-748/+759
svn path=/trunk/; revision=53779
2013-12-04From Anders request Add prototype for corba/idl dissectorAlexis La Goutte1-0/+17
svn path=/trunk/; revision=53778
2013-12-04Fix for dissecting cdt without having a tree.Stig Bjørlykke2-3/+7
svn path=/trunk/; revision=53777
2013-12-04On Windows:Jörg Mayer1-0/+5
- Add instructions how to build zlib - Add information how to build with msbuild svn path=/trunk/; revision=53776
2013-12-04- Include config.hJörg Mayer1-6/+6
- Merge two ifdef _WIN32 sections svn path=/trunk/; revision=53775
2013-12-03Avoid including <epan/epan.h> in dissectors.Jakub Zawadzki12-13/+22
svn path=/trunk/; revision=53774
2013-12-03Dissect comprehension-tlv address objectPascal Quantin1-0/+3
svn path=/trunk/; revision=53773
2013-12-03Include <epan/dfilter/dfilter.h> in files that use display filterGuy Harris2-0/+2
routines. svn path=/trunk/; revision=53772
2013-12-03missing stdlib.h include for wslua.Jakub Zawadzki1-0/+1
svn path=/trunk/; revision=53771