aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
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
2013-07-22Move file_wrappers.c to dirty files, it has some warnings (turning errors)Jörg Mayer1-4/+8
when compiled with clang. Just for documentation: [ 6%] Building C object wiretap/CMakeFiles/wiretap.dir/file_wrappers.c.o /home/jmayer/work/wireshark/svn/trunk/wiretap/file_wrappers.c:987:28: warning: implicit conversion loses integer precision: 'gint64' (aka 'long long') to '__off_t' (aka 'long') [-Wshorten-64-to-32] if (ws_lseek64(file->fd, off, SEEK_SET) == -1) { ~~~~~~~~~~ ^~~ /home/jmayer/work/wireshark/svn/trunk/wiretap/file_wrappers.c:1051:35: warning: implicit conversion loses integer precision: 'long long' to '__off_t' (aka 'long') [-Wshorten-64-to-32] if (ws_lseek64(file->fd, offset - file->have, SEEK_CUR) == -1) { ~~~~~~~~~~ ~~~~~~~^~~~~~~~~~~~ /home/jmayer/work/wireshark/svn/trunk/wiretap/file_wrappers.c:1076:34: warning: implicit conversion loses integer precision: 'gint64' (aka 'long long') to '__off_t' (aka 'long') [-Wshorten-64-to-32] if (ws_lseek64(file->fd, file->start, SEEK_SET) == -1) { ~~~~~~~~~~ ~~~~~~^~~~~ 3 warnings generated. svn path=/trunk/; revision=50798
2013-07-22Add forgotten update.Anders Broman1-0/+4
svn path=/trunk/; revision=50797
2013-07-22Dissect S6 feature list.Anders Broman3-9/+323
svn path=/trunk/; revision=50796
2013-07-22Revert removed line in r50774, we can update pinfo->rel_ts not sure if it ↵Jakub Zawadzki1-0/+1
makes sense, but why not? svn path=/trunk/; revision=50795
2013-07-22Abuse epan_t more: add callback to get interface name.Jakub Zawadzki9-3/+49
svn path=/trunk/; revision=50794
2013-07-22ASes can now be 32-bits; make the fields for them 32-bit so that you canGuy Harris1-4/+4
filter on all possible values of them. Fixes bug 8959. #BACKPORT 1.10, 1.8 svn path=/trunk/; revision=50791
2013-07-22Mark a parameter unused.Gerald Combs1-1/+1
svn path=/trunk/; revision=50790
2013-07-22Wrap clang specific tests into a clang tests instead of checkingJörg Mayer1-11/+16
for APPLE. Move 3 of the 4 tests out of this check because the improved checks should detect them correctly now svn path=/trunk/; revision=50789
2013-07-22Looks like building with -Werror in wsutil was forgotten withJörg Mayer1-0/+12
cmake. svn path=/trunk/; revision=50788
2013-07-22Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8958 :Pascal Quantin1-2/+7
Highlight the right number of bytes for the PadN option data field svn path=/trunk/; revision=50787
2013-07-22Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8957 :Pascal Quantin1-6/+1
remove a copy /paste error triggering a malformed exception when dissecting IPv4 DHCP Support Mode option svn path=/trunk/; revision=50786
2013-07-22Fix includes to get things compiling.Michael Tüxen3-4/+2
svn path=/trunk/; revision=50785
2013-07-22Don't use the program name to identify the compiler - it won't workJörg Mayer1-2/+1
reliably in cases where the compiler is name /usr/bin/cc Use the internal variable CMAKE_<LANG>_COMPILER_ID instead, which is finally documented (but still called internal in the docs), see http://www.cmake.org/cmake/help/v2.8.10/cmake.html#variable:CMAKE_LANG_COMPILER_ID svn path=/trunk/; revision=50784
2013-07-22Beginnings of Nintendo StreetProtocol supportJörg Mayer2-1/+128
svn path=/trunk/; revision=50783
2013-07-22Squelch uninitialized variable warning.Guy Harris1-1/+1
svn path=/trunk/; revision=50782
2013-07-22fix "compiler errors"Michael Mann1-4/+5
Add better support for IP field detection. svn path=/trunk/; revision=50781
2013-07-22Make items more filterableMichael Mann1-237/+266
Apply consistent whitespace. Remove unnecessary string.h svn path=/trunk/; revision=50780
2013-07-22Commit real kafka dissector this time.Evan Huus1-0/+491
svn path=/trunk/; revision=50779
2013-07-22Remove kafka dissector, accidentally committed symlink instead of real file.Evan Huus1-1/+0
svn path=/trunk/; revision=50778
2013-07-22Skeleton dissector for Apache Kafka's new protocol:Evan Huus3-0/+3
https://cwiki.apache.org/confluence/display/KAFKA/A+Guide+To+The+Kafka+Protocol All the core request/response matching necessary to actually decode is done, and helpers exist for the common Kafka data types. Now it just remains to fill in the rest of the fields. svn path=/trunk/; revision=50777
2013-07-21Update rtp_player for rel_ts move.Evan Huus1-2/+2
svn path=/trunk/; revision=50776
2013-07-21Fix file.c:112:1: error: ‘static’ is not at beginning of declarationEvan Huus1-1/+1
[-Werror=old-style-declaration] svn path=/trunk/; revision=50775
2013-07-21Update plugins/ with recent change.Jakub Zawadzki2-2/+1
svn path=/trunk/; revision=50774
2013-07-21Fix error when compiled with --enable-packet-editorJakub Zawadzki1-0/+2
svn path=/trunk/; revision=50773
2013-07-21Replace relative timestamp with reference frame number. Saves 16B per frame.Jakub Zawadzki42-138/+222
svn path=/trunk/; revision=50772
2013-07-21There are many types that eventually turn into "signed byte"; for callsGuy Harris1-1/+1
to g_strlcpy(), use the one of them that it's documented as using. svn path=/trunk/; revision=50771
2013-07-21- Whitespace changesJörg Mayer1-11/+11
- Add a missing continuation \ svn path=/trunk/; revision=50770
2013-07-21Add wmem queue 'implementation' by wrapping wmem_list and wmem_stack.Evan Huus7-11/+124
Also a bit of misc. refactoring of the stack while I was there, and doc tweaks. svn path=/trunk/; revision=50769
2013-07-21Remove unused variable, fix comparison to use double-equals.Evan Huus1-2/+2
svn path=/trunk/; revision=50768
2013-07-21Fix: epan.c:155: warning: assignment discards qualifiers from pointer target ↵Jakub Zawadzki1-1/+1
type svn path=/trunk/; revision=50767