From 98b8a9895aefa96cff5b43100308c7842f55834f Mon Sep 17 00:00:00 2001 From: Jeff Morriss Date: Tue, 1 May 2012 18:59:12 +0000 Subject: [PATCH] Add copyright notices. Fix SVN properties on svnadd. svn path=/trunk/; revision=42375 --- tools/list_protos_in_cap.sh | 26 +++++++++++++++++++++++--- tools/svnadd | 2 +- tools/test-fuzzed-cap.sh | 24 ++++++++++++++++++++++-- tools/valgrind-wireshark.sh | 24 ++++++++++++++++++++++-- 4 files changed, 68 insertions(+), 8 deletions(-) diff --git a/tools/list_protos_in_cap.sh b/tools/list_protos_in_cap.sh index 609b56f412..8bc183e71f 100755 --- a/tools/list_protos_in_cap.sh +++ b/tools/list_protos_in_cap.sh @@ -1,7 +1,5 @@ #!/bin/bash -# -# $Id$ -# + # List the protocols (dissectors) used in capture file(s) # # This script extracts the protocol names contained in a given capture file. @@ -10,6 +8,28 @@ # # Output consists of the file name followed by the protocols, for example: # /path/to/the/file.pcap eth ip sctp +# +# Copyright 2012 Jeff Morriss +# +# $Id$ +# +# Wireshark - Network traffic analyzer +# By Gerald Combs +# Copyright 1998 Gerald Combs +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Directory containing binaries. Default current directory. BIN_DIR=. diff --git a/tools/svnadd b/tools/svnadd index 920517d830..a16def19e3 100755 --- a/tools/svnadd +++ b/tools/svnadd @@ -6,7 +6,7 @@ # # A little shell script to make it easy to set the appropriate SVN properties. # -# $Id: fix-encoding-args.pl 39567 2011-10-25 17:04:48Z wmeier $ +# $Id$ # # Wireshark - Network traffic analyzer # By Gerald Combs diff --git a/tools/test-fuzzed-cap.sh b/tools/test-fuzzed-cap.sh index 2e98a8c9bd..c800b26816 100755 --- a/tools/test-fuzzed-cap.sh +++ b/tools/test-fuzzed-cap.sh @@ -1,12 +1,32 @@ #!/bin/bash -# -# $Id$ # A little script to run tshark on a capture file that failed fuzz testing. # Useful because it sets up ulimits for you. (I'm writing this after having # my machine hang up for like 15 minutes because I wasn't paying attention # while tshark was running on a fuzzed capture and it used all my RAM + # swap--which was pretty painful.) +# +# Copyright 2012 Jeff Morriss +# +# $Id$ +# +# Wireshark - Network traffic analyzer +# By Gerald Combs +# Copyright 1998 Gerald Combs +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. if [ $# -ne 1 ] then diff --git a/tools/valgrind-wireshark.sh b/tools/valgrind-wireshark.sh index 47939311f5..3d1e2d8155 100755 --- a/tools/valgrind-wireshark.sh +++ b/tools/valgrind-wireshark.sh @@ -1,9 +1,29 @@ #!/bin/bash + +# A small script to export some variables and run tshark or wireshark in +# valgrind on a given capture file. +# +# Copyright 2012 Jeff Morriss # # $Id$ # -# A small script to export some variables and run tshark or wireshark in -# valgrind on a given capture file. +# Wireshark - Network traffic analyzer +# By Gerald Combs +# Copyright 1998 Gerald Combs +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Directory containing tshark or wireshark. Default current directory. BIN_DIR=.