aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2013-10-19Don't link explicitly with libwmem, it's already in libwireshark and the symbolEvan Huus2-3/+2
doubling leads to all sorts of very subtle badness (including test failures due to funny internal assertions because the two wmems have mismatching state). Make wmem_init and wmem_cleanup PUBLIC instead of LOCAL so that they don't get stripped and don't cause a link failure when trying to build oids_test (now that it's not linking with libwmem explicitly). There is possibly a better way to fix this, but I'm not sure what it is. svn path=/trunk/; revision=52694
2013-10-19Add OID unit tests. Bug 9294 ↵Michael Mann5-9/+510
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9294) From Ed Beroset svn path=/trunk/; revision=52692
2013-10-19Correct source code formatting. Bug 9146 ↵Michael Mann1-1686/+1573
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9146) From Roland Knall svn path=/trunk/; revision=52691
2013-10-19Update commentsPascal Quantin2-18/+18
svn path=/trunk/; revision=52690
2013-10-19Minor refactoring in CMake ABI dump generationBalint Reczey4-9/+6
svn path=/trunk/; revision=52689
2013-10-19Set and use TMPDIR for ABI dump generation when using CMakeBalint Reczey4-36/+37
svn path=/trunk/; revision=52688
2013-10-19Update E.212 list to Operational Bulletin No. 1038 (15.X.2013)Pascal Quantin1-10/+78
svn path=/trunk/; revision=52687
2013-10-19Update ITU E.164 list to Operational Bulletin No. 1038 (15.X.2013)Pascal Quantin1-308/+313
svn path=/trunk/; revision=52686
2013-10-19Convert to new hf handlingJörg Mayer1-136/+139
svn path=/trunk/; revision=52685
2013-10-19Some more decoding of mint traffic, start reformatting (incomplete)Jörg Mayer1-95/+170
svn path=/trunk/; revision=52684
2013-10-19Only allow one popup dialog in UAT dialog. Editing/copying/deleting can ↵Michael Mann1-36/+60
modify the uat list and other open dialogs will not be aware of it and lead to unexpected behavior (including crashes). Fixes bug 9129 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9129) #BACKPORT(1.10) svn path=/trunk/; revision=52683
2013-10-18Fix writing enhanced packet blocks when flags areMichael Tüxen1-4/+0
provided: Don't write the end od options parameter twice. svn path=/trunk/; revision=52682
2013-10-18Get it actually building when we don't HAVE_LIBPCAP.Jeff Morriss2-3/+1
It would seem moc doesn't know about or pay attention to #ifdefs so take them out of wireshark_application.h . svn path=/trunk/; revision=52681
2013-10-18Clean up warnings when we don't HAVE_LIBPCAP.Jeff Morriss2-2/+2
svn path=/trunk/; revision=52680
2013-10-18Don't allow invalid ranges to be specified for the stats tree. Bug 9130 ↵Michael Mann2-21/+32
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9130) Not sure which memory allocation should be used here (using wmem caused crash), but this revision can at least be easily backported to 1.10 where the bug was reported. Also allow a single number to be used in the stats range since it's considered a valid "range" by the UAT. svn path=/trunk/; revision=52679
2013-10-18- Remove hf_ integers from few more dissectorsJakub Zawadzki7-318/+374
- udp: remove proto_udp. svn path=/trunk/; revision=52678
2013-10-18White space cleanups (thanks either to shekhar.chandra@citrix.com orGuy Harris1-31/+31
Bill Meier; see bug 9280). svn path=/trunk/; revision=52677
2013-10-18Simplify a bit (in a way which will hopefully actually work): just don't add ↵Jeff Morriss2-17/+6
-Wshorten-64-to-32 to CXXFLAGS. Also, add AM_CLEAN_FLAGS to AM_CXXFLAGS, not AM_CPPFLAGS. svn path=/trunk/; revision=52676
2013-10-18Fix lemon FSF address and add license exception for the generated mate grammarEvan Huus3-8/+12
files. One of them has no license (it is just defines) and the other gets picked up as LGPL for no reason I can discern. svn path=/trunk/; revision=52675
2013-10-18Add -Wno-shorten-64-to-32 (if we can) when compiling the Qt UI.Jeff Morriss2-2/+17
svn path=/trunk/; revision=52674
2013-10-18Add AM_CLEAN_CFLAGS (-Werror) to AM_CPPFLAGS so we get notified of warnings inJeff Morriss1-1/+2
the C++ stuff. ui/qt/CMakeLists.txt adds -Wno-shorten-64-to-32 on 64-bit systems but it doesn't seem necessary on Fedora 18 (64-bit). Leaving it out for now--let's see what others say... svn path=/trunk/; revision=52673
2013-10-18Make sure LIBGCRYPT_CFLAGS is added to AM_CPPFLAGS.Gerald Combs1-1/+1
svn path=/trunk/; revision=52672
2013-10-18Revert SVN #52650 as per discussion on wireshark-devBill Meier4-14/+13
svn path=/trunk/; revision=52671
2013-10-18Use Z_tree for the subtreeMichael Mann1-2/+2
svn path=/trunk/; revision=52670
2013-10-18Beginnings of Motrola's MiNT protocol.Jörg Mayer5-0/+425
Most important missing item: Fill in the test functions to avoid using all packets to the (fixed) ports. svn path=/trunk/; revision=52669
2013-10-18Forgot in the previous checkin.Jörg Mayer1-1/+1
svn path=/trunk/; revision=52668
2013-10-18After looking for something in the column-*.h files andJörg Mayer17-18/+18
not finding it, I finally found it in column_info.h Renamed column_info.h to column-info.h to have consistency with the column*h files. svn path=/trunk/; revision=52667
2013-10-18Revert SVN #52665.Bill Meier7-307/+40
Compilation fails on (only the ?) OSX-10.6-x64 buildbot with error: netscaler.c: In function 'nstrace_read_v30': netscaler.c:1295: warning: implicit conversion shortens 64-bit value into a 32-bit value (Life is too short for me to dig multiple levels deep into a set of macros to try to see which actual line of code is causing the problem. Maybe the patch submitter can identify the problem). svn path=/trunk/; revision=52666
2013-10-18From Shekhar Chandra: support for version 3.0 of netscaler packet wire format.Bill Meier7-40/+307
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9280 From me: fix indentation(tabs->spaces) and trailing whitespace. svn path=/trunk/; revision=52665
2013-10-18Add more filterable fields around EDNS(0)Michael Mann1-53/+82
svn path=/trunk/; revision=52664
2013-10-17Sign all of the executables.Gerald Combs1-2/+9
svn path=/trunk/; revision=52663
2013-10-17Bugfix an apparent typo in edns0 "Higher bits in extended RCODE". Bug 9199 ↵Michael Mann1-1/+1
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9199). #BACKPORT(1.10) svn path=/trunk/; revision=52662
2013-10-17If static analysis is enabled disable error checking when compiling theGerald Combs1-0/+7
Qt code. This should hopefully work around a builder issue. svn path=/trunk/; revision=52661
2013-10-17Revert the optimization in r52578. As Jakub predicted, it caused at least oneEvan Huus3-26/+44
infinite loop to pop up. We're just going to have to eat the performance hit. (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9282) svn path=/trunk/; revision=52660
2013-10-17H.225.0: fix handling of compound parameters in Generic Extensible Framework ↵Tomas Kukosa3-39/+14
(H.460.22 did not work well) svn path=/trunk/; revision=52659
2013-10-17Temporarily revert r52651 it caused a regression when trying to tvb_memcpy fromEvan Huus1-22/+15
a negative offset (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9277) svn path=/trunk/; revision=52658
2013-10-17Properly decode CAPWAP Data Keep-Alive's. Bug 9165 ↵Michael Mann1-5/+55
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9165) From Andreas Schultz From me: Use expert API instead of throwing exception for a bad length. svn path=/trunk/; revision=52657
2013-10-17Be able to search through HTTP request and HTTP response lines. Bug 9134 ↵Michael Mann1-7/+57
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9134) From Edwin Groothuis svn path=/trunk/; revision=52656
2013-10-16If the length we allocated was 0, don't try and write to the returned pointer.Evan Huus1-5/+9
Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9276 svn path=/trunk/; revision=52655
2013-10-16Add checks to see if CC and/or CXX are Clang. Add "-Qunused-arguments"Gerald Combs2-2/+44
to CFLAGS and/or CXXFLAGS as needed. svn path=/trunk/; revision=52654
2013-10-16Remove trailing blanks; Fix some indentation;Bill Meier4-28/+56
Add editor modelines. svn path=/trunk/; revision=52653
2013-10-16Fix inconsistent indentation & formatting, trailing blanks.Bill Meier1-195/+209
Add some parens. Add editor modelines. svn path=/trunk/; revision=52652
2013-10-16Create an internal _tvb_memcpy() without the sanity checks to be caled from ↵Anders Broman1-15/+22
tvb internal routines with sanity checks to avoid duplicated checks. svn path=/trunk/; revision=52651
2013-10-16Prepend to lists rather than append as that's more efficient.Anders Broman4-13/+14
svn path=/trunk/; revision=52650
2013-10-16Don't bother checking for clang, just add -Qunused-arguments to theGerald Combs1-3/+1
compiler flags checks. svn path=/trunk/; revision=52649
2013-10-16In packet-wsp.c, don't use the get_long_integer macro where we only need theEvan Huus1-6/+6
very smallest part of its logic. Just call tvb_get_guint8 directly and check that the return is between 1 and 4. Properly fixes the set-but-unused and associated warnings that were showing up. svn path=/trunk/; revision=52648
2013-10-161.11.0 -> 1.11.1Pascal Quantin4-4/+4
svn path=/trunk/; revision=52647
2013-10-16If we're using Clang add -Qunused-arguments in order to avoid a bunchGerald Combs2-2/+10
of warnings described at http://petereisentraut.blogspot.com/2011/05/ccache-and-clang.html svn path=/trunk/; revision=52646
2013-10-16Fix warnings found by Clang 5.0 (-Wself-assign and -Wparentheses-equality).Gerald Combs3-19/+35
Move code from ipv6-utils.h to packet-ipv6.c since that was the only place it was used. Comment out unused code. svn path=/trunk/; revision=52645
2013-10-16Fix a comment.Gerald Combs1-1/+1
svn path=/trunk/; revision=52644