aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2013-07-24Make some routines not used outside rawshark.c static.Guy Harris1-2/+2
svn path=/trunk/; revision=50859
2013-07-23Make some functions not used outside tshark.c static.Guy Harris1-2/+2
svn path=/trunk/; revision=50858
2013-07-23Make a routine not used outside file.c static.Guy Harris1-1/+1
svn path=/trunk/; revision=50857
2013-07-23Don't cast away constness (except in cases where an API makes thatGuy Harris1-2/+5
impossible). svn path=/trunk/; revision=50856
2013-07-23Don't cast away constness.Guy Harris1-1/+1
svn path=/trunk/; revision=50855
2013-07-23Don't cast away constness (except where APIs render that impossible).Guy Harris1-1/+1
svn path=/trunk/; revision=50854
2013-07-23Don't cast away constness.Guy Harris1-1/+1
svn path=/trunk/; revision=50853
2013-07-23Fix ECHLD_TIMEOUT vs ECHLD_TIMED_OUT a second time for today.Jörg Mayer1-2/+2
svn path=/trunk/; revision=50852
2013-07-23Register BSSAP+ by name.Anders Broman1-0/+1
svn path=/trunk/; revision=50851
2013-07-23Clean up capitalization in some option descriptions.Guy Harris1-9/+9
svn path=/trunk/; revision=50850
2013-07-23The Qt documentation appears to indicate that you're expected to includeGuy Harris1-1/+1
<QPushButton> if you're using a QPushButton, so: 1) adding the include is the right fix, not just a duct-tape fix; 2) <QPushButton>, rather than <qpushbutton.h>, is probably what you're expected to include. (<QPushButton> is, at least in Qt 5.1, a wrapper that just includes <qpushbutton.h>.) svn path=/trunk/; revision=50849
2013-07-23Handle operating systems that are anticipating the day when files shouldGuy Harris1-1/+9
be read in chunks > 2GB. svn path=/trunk/; revision=50847
2013-07-23Yet another iteration...Luis Ontanon6-32/+156
svn path=/trunk/; revision=50846
2013-07-23Free all cloned tvbs, not only first one.Jakub Zawadzki1-9/+8
svn path=/trunk/; revision=50844
2013-07-23Move tvb_new_child_real_data() to tvbuff_real.c with some cleanupJakub Zawadzki2-11/+10
svn path=/trunk/; revision=50843
2013-07-23Add RFC6975 (Signaling Cryptographic Algorithm Understanding in DNS Security ↵Alexis La Goutte1-0/+48
Extensions (DNSSEC)) support ( DAU, DHU and N3U OPT(ion)) svn path=/trunk/; revision=50840
2013-07-23Fix warning found by fix-encoding-argsAlexis La Goutte1-9/+9
svn path=/trunk/; revision=50839
2013-07-23Enhance DNS Dissector Make DS ( Delegation Signature 43 ) filterable (Update ↵Alexis La Goutte1-68/+50
RFC reference...) svn path=/trunk/; revision=50838
2013-07-23Try to differentiate a non filled private_data (pointer set to NULL) from an ↵Pascal Quantin4-80/+64
enum with value = 0 svn path=/trunk/; revision=50837
2013-07-23Fix for Bug 8960 - All mongodb query show as [Malformed Packet: MONGO]Jörg Mayer1-1/+1
proto_tree_add_item doesn't link to be called with FT_STRINGZ and length -1. svn path=/trunk/; revision=50836
2013-07-23Move files to dirty that generate a warning aboutJörg Mayer1-5/+9
variable length array svn path=/trunk/; revision=50835
2013-07-23- Fix a typo that was warned about (acually a coding error thatJörg Mayer1-23/+24
would not have had any effect in this particular case). - Remove trailing whitespace. svn path=/trunk/; revision=50834
2013-07-23Include sys/wait.hJörg Mayer1-0/+4
svn path=/trunk/; revision=50833
2013-07-23Separate sources inJörg Mayer1-6/+6
CLEAN_FILES DIRTY_FILES and move packet_list_record.cpp to DIRTY. Now I finally have a compiling qtshark again (clang and Qt5) svn path=/trunk/; revision=50832
2013-07-23Fix the following error with Duct Tape - long term solution stillJörg Mayer1-0/+1
recommended ;-) /home/jmayer/work/wireshark/svn/trunk/ui/qt/summary_dialog.cpp:67:5: error: no matching +member function for call to 'connect' connect(bRefresh, SIGNAL(clicked()), this, SLOT(RefreshData())); ^~~~~~~ /usr/include/QtCore/qobject.h:199:36: note: candidate function not viable: cannot +convert argument of incomplete type 'QPushButton *' to 'const QObject *' static QMetaObject::Connection connect(const QObject *sender, const char *signal, ^ /usr/include/QtCore/qobject.h:202:36: note: candidate function not viable: cannot +convert argument of incomplete type 'QPushButton *' to 'const QObject *' static QMetaObject::Connection connect(const QObject *sender, const QMetaMethod +&signal, ... svn path=/trunk/; revision=50831
2013-07-23Fix "missing sentinel in function call" with help ofJörg Mayer1-2/+2
http://stackoverflow.com/questions/12095865/spurious-missing-sentinel-in-function-call svn path=/trunk/; revision=50830
2013-07-23Sort alphabeticallyJörg Mayer1-3/+3
svn path=/trunk/; revision=50829
2013-07-23From Javier Godoy via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8963Alexis La Goutte1-0/+1
packet-scsi.c add asc/ascq code 2C:0A Add ASC/ASCQ code 2C:0Ah "PARTITION OR COLLECTION CONTAINS USER OBJECTS" (SPC-4 svn path=/trunk/; revision=50828
2013-07-23From Javier Godoy via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8965Alexis La Goutte1-1/+1
Packet-scsi.c: fix subtree reference: ett_sense_osd_completed The field hf_scsi_sns_osd_object_completed should be dissected under ett_sense_osd_completed instead of ett_sense_osd_not_initiated (It was a copy-paste error in attachment 10967 from bug 8790) svn path=/trunk/; revision=50827
2013-07-23From Thomas ERSFELD (GSoC13) Apply changes of revision 50107 to qtshark man ↵Alexis La Goutte3-18/+40
pages sorted and added capinfos & reordercap svn path=/trunk/; revision=50826
2013-07-23Use largefile detection in cmake.Jörg Mayer3-1/+11
Move wiretap/file_wrapper.c back to clean sources. svn path=/trunk/; revision=50825
2013-07-23Copy over cmake largfile detection from the gromacs project.Jörg Mayer3-0/+173
svn path=/trunk/; revision=50824
2013-07-23Fix typo (Missing .git in git clone URL)Alexis La Goutte1-1/+1
svn path=/trunk/; revision=50823
2013-07-23From Thomas ERSFELD (GSoC13) via remark of Gerald Use QDialogButtonBox for ↵Alexis La Goutte3-36/+28
Summary Dialog (Using a QDialogButtonBox would ensure that the button names, sizes, and placement conforms to the UI guidelines for each platform.) svn path=/trunk/; revision=50822
2013-07-23Fix warning when build QtsharkAlexis La Goutte1-5/+5
summary_dialog.ui: Warning: The name 'layoutWidget' (QWidget) is already in use, defaulting to 'layoutWidget1'. summary_dialog.ui: Warning: The name 'layoutWidget' (QWidget) is already in use, defaulting to 'layoutWidget2'. summary_dialog.ui: Warning: The name 'layoutWidget' (QWidget) is already in use, defaulting to 'layoutWidget3'. svn path=/trunk/; revision=50821
2013-07-23Fix warning from Windows Buildbot (when build qtshark) ↵Alexis La Goutte1-1/+2
.\print_dialog.cpp(41) : warning C4100: 'version_string' : unreferenced formal parameter svn path=/trunk/; revision=50820
2013-07-23From Thomas ERSFELD (GSoC13) Prepare inclusion of Follow (TCP/UDP/SSL) ↵Alexis La Goutte2-0/+16
feature in Qtshark svn path=/trunk/; revision=50819
2013-07-23From Thomas ERSFELD (GSoC13) Qtshark : Columns in the packet list table are ↵Alexis La Goutte4-0/+10
not updated when you add one on preference menu svn path=/trunk/; revision=50818
2013-07-23Looks like not every version of cmake has the same behaviour wrtJörg Mayer1-1/+1
the working directory. So hardcode the path in a case where it didn't work for everyone. svn path=/trunk/; revision=50817
2013-07-23collectd.data.severity is unsigned, so use proto_tree_add_uint64.Guy Harris1-1/+1
svn path=/trunk/; revision=50816
2013-07-23From Andreas Bachmann:Anders Broman1-70/+154
allows to display multiple TLVs and the bug of logInterMessagePeriod is fixed. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6126 svn path=/trunk/; revision=50815
2013-07-23From Michal Labedzki:Anders Broman3-76/+801
HCI: Improve Class of Device dissection. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8948 svn path=/trunk/; revision=50814
2013-07-23From Michal Labedzki:Anders Broman3-343/+834
HCI: Add latest Assigned Numbers https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8948 svn path=/trunk/; revision=50813
2013-07-23From Michal Labedzki:Anders Broman6-10/+232
Add initial support for 3DS Profile. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8948 svn path=/trunk/; revision=50812
2013-07-23From Michal Labedzki:Anders Broman1-3/+3
ATT: remove trailing white characters. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8948 svn path=/trunk/; revision=50811
2013-07-23From Michal Labedzki:Anders Broman1-14/+58
SDP: Add support for USB Forum ProductID names. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8948 svn path=/trunk/; revision=50810
2013-07-23From Javier Godoy:Anders Broman1-78/+2
Remove function osd_list_collection and update scsi_osd_svcaction. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8944#attach_11229 svn path=/trunk/; revision=50809
2013-07-22Have get_uint_value() assume it's being passed an encoding value, whichGuy Harris1-17/+11
isn't necessarily going to be zero if the item is big-endian. The last argument to test_length() is an encoding, not a big-endian vs. little-endian Boolean; name it appropriately. This fixes bug 8953. svn path=/trunk/; revision=50806
2013-07-22The last argument to ptvcursor_add() is an encoding value; pass it one,Guy Harris1-6/+11
not a Boolean endianness value. svn path=/trunk/; revision=50803
2013-07-22Fix forJörg Mayer1-1/+1
[ 28%] Building C object epan/CMakeFiles/epan.dir/dissectors/packet-diameter_3gpp.c.o /home/jmayer/work/wireshark/svn/trunk/epan/dissectors/packet-diameter_3gpp.c:232:90: error: unused parameter 'tree' [-Werror,-Wunused-parameter] ...*tvb, packet_info *pinfo _U_, proto_tree *tree, void *data _U_) ^ 1 error generated. make[2]: *** [epan/CMakeFiles/epan.dir/dissectors/packet-diameter_3gpp.c.o] Error 1 svn path=/trunk/; revision=50799