aboutsummaryrefslogtreecommitdiffstats
path: root/tools
AgeCommit message (Collapse)AuthorFilesLines
2013-12-03Dissectors should not use dfilter.h, don't include it.Jakub Zawadzki1-0/+1
XXX ncp2222 dissector is using dfilter_compile(), why? svn path=/trunk/; revision=53766
2013-12-03Add modelines info to idl generate fileAlexis La Goutte1-2/+36
svn path=/trunk/; revision=53754
2013-12-03Fix indent for generated file (Use 4 space)Alexis La Goutte1-39/+39
svn path=/trunk/; revision=53753
2013-12-03Fix generator don't generate trailing whitespaceAlexis La Goutte1-4/+6
svn path=/trunk/; revision=53752
2013-12-03Remove trailing whitespace and add modelines infoAlexis La Goutte1-44/+46
svn path=/trunk/; revision=53751
2013-12-03Remove whitespace and add modelines infoAlexis La Goutte1-2/+12
svn path=/trunk/; revision=53750
2013-12-03Add #pragma to idl generator...Alexis La Goutte1-1/+5
svn path=/trunk/; revision=53746
2013-12-01Use 4-space (PEP 8) indentation. Add modelines.Gerald Combs5-443/+501
svn path=/trunk/; revision=53685
2013-12-01Use indentation recommended by PEP 8.Gerald Combs1-126/+125
svn path=/trunk/; revision=53684
2013-12-01Fix compatibility with Python 2.5. Tested with 2.5, 2.6, 2.7, and 3.3.Gerald Combs1-3/+4
svn path=/trunk/; revision=53683
2013-11-29Graham BloiceJörg Mayer1-5/+14
I've now got tshark to build from a VS solution file, had to do some hacks to get there though, patch files attached for others to peruse, as I'm not sure if they are the optimal solutions: 3. As mentioned in my previous message, the VS solution chops out every 8192nd byte from the command line passed to make-dissector-reg.py. My patch (make-reg.patch) gets CMake to write out the required source file list to a file and modifies the python script to read in the file. The python changes *should* be backwards compatible. Me: Small fix to UseMakeDissectorReg.cmake (elseif() -> else()) svn path=/trunk/; revision=53654
2013-11-28Fix potential signed int overflow in LemonBalint Reczey1-2/+2
This chrashed Solaris buildbot when -ftrapv was enabled. Triaged by Guy Harris, see detail at: http://www.wireshark.org/lists/wireshark-dev/201311/msg00185.html svn path=/trunk/; revision=53624
2013-11-25Delete the svn:executable property on added files (we might add it back later).Jeff Morriss1-0/+3
svn path=/trunk/; revision=53587
2013-11-24Move dceprc_procedure_name from packet_info to dcerpc_info. Doesn't appear ↵Michael Mann1-2/+2
to be "used" by dissectors, just stored (for help in debugging?). svn path=/trunk/; revision=53552
2013-11-24Fix checkAPIs: don't try to feed VALS() into FT_BOOLEANs.Jeff Morriss1-3/+4
Also, as per Peter Harris' request, update copyright date. svn path=/trunk/; revision=53545
2013-11-24Some patches from Peter Harris to make it possible to build the X11 dissectorJeff Morriss1-132/+371
again (and some various other improvements): Rebuild the dissector with the latest xcbproto and mesa. Subject: [PATCH 01/11] X11 dissector: Support CARD64 and INT64 types These types are used by the new Present extension. Subject: [PATCH 02/11] X11 dissector: Un-blacklist a few structures The xinput structs are used by the latest xcb/proto, and the xkb struct has been removed. Subject: [PATCH 03/11] X11 dissector: Add hack for xinput:ChangeProperty xinput:ChangeProperty should use switch/case, but only switch/bitcase is supported at the moment. Add (hopefully temporary) hack. Subject: [PATCH 04/11] X11 dissector: Use namespace for types In particular, the name of the xsync struct 'INT64' collides with a basic type of the same name. Subject: [PATCH 05/11] X11 dissector: Add support for "Generic" events All new extensions are using the new "Generic" events instead of traditional events, because there aren't enough traditional event numbers. Denoted by <event xge="true"> in xcb/proto. Subject: [PATCH 06/11] X11 dissector: Blacklist unused structures Subject: [PATCH 07/11] X11 dissector: Support multiple enumref in a bitcase XKB is weird. Subject: [PATCH 08/11] X11 dissector: Support sumof Subject: [PATCH 09/11] X11 dissector: Stop generating unused-but-set variables (This patch also reverts r53298/r53299.) svn path=/trunk/; revision=53531
2013-11-23Implement address_to_str which is like ep_address_to_str and se_address_to_strEvan Huus1-1/+3
except it takes a wmem scope instead. Add the two emem equivalents to checkAPI as (weakly) deprecated. svn path=/trunk/; revision=53528
2013-11-22Add exception for cmake/TestWindowsFSeek.c it is copied from upstream under aEvan Huus1-0/+3
valid license, but has no recognizable header and there's no reason to carry the delta. svn path=/trunk/; revision=53518
2013-11-17Add a way to retrieve a PER variable bit string lengthPascal Quantin1-1/+2
svn path=/trunk/; revision=53382
2013-11-13Wrap GCC pragma in an #ifdef to make it compile when we're not using GCC.Jeff Morriss1-1/+3
Again, change manually applied to the .h file. svn path=/trunk/; revision=53299
2013-11-13Use a gcc pragma to stop the (pages of) warnings coming out ofJeff Morriss1-2/+3
x11-extensions-implementation.h . This change was manually applied to the .h file as I can't currently rebuild the X11 dissector. svn path=/trunk/; revision=53298
2013-11-11Add -P option to allow specifying the 'callgrind-out-file' nameBill Meier1-2/+4
svn path=/trunk/; revision=53250
2013-11-10Add missing includes in order to remove exceptions.h from proto.h (next commit).Jakub Zawadzki1-0/+1
svn path=/trunk/; revision=53230
2013-11-10Move struct _ftype_t + callback typedefs + free macro to ftypes-int.hJakub Zawadzki1-0/+1
svn path=/trunk/; revision=53223
2013-11-09Include <epan/to_str.h> only when needed.Jakub Zawadzki1-0/+1
svn path=/trunk/; revision=53189
2013-11-06Reapply the removal or the use of private_data that got removed byJörg Mayer1-58/+52
syncing from samba.org. If any other patches were applied, then I missed them and they are lost unless reapplied. svn path=/trunk/; revision=53121
2013-11-06Copy over the current WIP from samba.org::ftp/unpacked/samba_4_0_test/pidlJörg Mayer18-191/+360
- As the pidl in Wireshark doesn't work anyway we can just mirror the WIP so that patches to our code base are against the current code. svn path=/trunk/; revision=53120
2013-11-06Add a license-ignore for tools/html2text.pyEvan Huus1-3/+8
Update the preamble to COPYING to clarify that pidl isn't the only tool we carry which isn't GPLv2-compatible. svn path=/trunk/; revision=53108
2013-11-06Remove pinfo->private_data from DCERPC dissectors. Bug 9387 ↵Michael Mann1-58/+52
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9387) This is the PIDL input file changes necessary to support removing pinfo->private_data from the DCERPC dissectors in favor of passing it through function parameters. I didn't regenerate the dissector source, so this is just a "good faith" effort to mimic the manual changes. svn path=/trunk/; revision=53098
2013-11-03Pass the name of the sed executable as an explicit argurment toJörg Mayer1-3/+13
runlex.sh (like it is done with LEX already). May fix a problem on Windows with cmake. svn path=/trunk/; revision=53059
2013-10-27More SVN properties cleanup.Jeff Morriss2-2/+2
svn path=/trunk/; revision=52884
2013-10-27Fix up some more svn properties.Jeff Morriss18-18/+18
svn path=/trunk/; revision=52882
2013-10-27Don't set svn:keywords on .pod files. Remove it from those that have it.Jeff Morriss1-7/+3
Reorganize svnadd a little bit. svn path=/trunk/; revision=52881
2013-10-26Updates to radiotap-iter licensing terms. The upstream version has a COPYINGEvan Huus1-0/+1
file containing what is actually the ISC license (BSD-like), so add that to the header for licensecheck's sake (and remove the confusing reference to the BSD license). This makes the code actually your choice of ISC and GPL2 (since it is used in the Linux kernel which is GPL2-only). ISC is already acceptable for us, so ISC \union * must be also, so add ISC+GPL2 to checlicenses' list. Upstream COPYING file, for reference: http://git.sipsolutions.net/?p=radiotap.git;a=blob;f=COPYING;hb=97478c8467ce7ab56b7c9e8fd7cdc0f4e2cb22ed svn path=/trunk/; revision=52879
2013-10-25Add an exception to the license-checker for Samba's special IDL license whichEvan Huus1-0/+6
appears to be compatible as far as I can tell (not a lawyer). See: https://www.wireshark.org/lists/wireshark-dev/201310/msg00234.html svn path=/trunk/; revision=52849
2013-10-25Handle *.rtf and *.qm files.Jeff Morriss1-1/+7
svn path=/trunk/; revision=52833
2013-10-24Confirm the license as well.Gerald Combs1-1/+1
svn path=/trunk/; revision=52819
2013-10-24Enable QtMultimedia. We'll need it for VoIP playback at some point.Gerald Combs1-1/+0
(The current Qt packages in wireshark-win{32,64}-libs still have QtMultimedia disabled. This will hopefully make sure it's enabled next time around.) svn path=/trunk/; revision=52818
2013-10-23Add an X11/MIT license to asn2wrs.py as it's compatible with our license, that'sEvan Huus1-1/+26
what the original base code was, and Tomas (who made most of the wireshark-specific changes) has no particular preference. svn path=/trunk/; revision=52801
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-13Add CMake properties to targets so that they are logically organised when ↵Graham Bloice1-0/+1
using a Visual Studio solution. Add CMake properties to group the source files in epan into logical blocks when using a Visual Studio solution. svn path=/trunk/; revision=52580
2013-10-12Update the User Guide for the upcoming 1.11.0 releasePascal Quantin2-2/+2
svn path=/trunk/; revision=52576
2013-10-12Update to the latest Windows library tags. Add an "install_qt" target.Gerald Combs2-2/+2
svn path=/trunk/; revision=52558
2013-10-11Don't assume people have subversion--I just copied my home directory to a newJeff Morriss1-2/+2
machine and it would have been nice if this script and installed subversion for me. Install perl-podlators too (for pod2man). Need to check if that's the package name to use on SuSE too... svn path=/trunk/; revision=52526
2013-10-09Add some license headers after emailing the respective authors to confirm.Evan Huus1-0/+21
svn path=/trunk/; revision=52471
2013-10-09Fix a comment.Gerald Combs1-1/+1
svn path=/trunk/; revision=52460
2013-10-06Ignore g711.c it's under some weird Sun license but appears to be fullyEvan Huus1-0/+3
GPL-compatible as far as I can tell (not a lawyer). svn path=/trunk/; revision=52415
2013-10-06Add license text to dftestlib files, and point to theGilbert Ramirez18-15/+320
capture files that someone renamed from *.cap to *.pcap. svn path=/trunk/; revision=52414
2013-10-06Add support for RELATIVE-OID ASN.1 type. Bug 9192 ↵Michael Mann3-3/+4
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9192) From Ed Beroset. svn path=/trunk/; revision=52393
2013-10-06Allow a "more complex" algorithm to finding proto_tree_add_text overuse. ↵Michael Mann1-2/+17
Disabled by default, but used when I want to go on an add filterability spree. convert_proto_tree_add_text.pl makes these easier to fix, so why not be pickier about the percentages that dissectors use. svn path=/trunk/; revision=52392