aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJoão Valverde <j@v6e.pt>2021-12-12 13:11:34 +0000
committerJoão Valverde <j@v6e.pt>2021-12-12 13:12:56 +0000
commit04d25fb64c76f352eddf40bdbca65924b5867a9a (patch)
treebe786089392eb4897419f57316caa0193330d40f /tools
parentcace66d45d79ba846aaa632f14311a4839460b23 (diff)
fix-encoding-args.pl: Remove dead code
Diffstat (limited to 'tools')
-rwxr-xr-xtools/fix-encoding-args.pl75
1 files changed, 0 insertions, 75 deletions
diff --git a/tools/fix-encoding-args.pl b/tools/fix-encoding-args.pl
index fc98c75bd5..3f9f805725 100755
--- a/tools/fix-encoding-args.pl
+++ b/tools/fix-encoding-args.pl
@@ -130,68 +130,6 @@ my @types_REG_PROTO =
);
# ---------------------------------------------------------------------
-# For searching (and doing no substitutions) (obsolete ?)
-
-my @types_TIME = (
- [qw (FT_ABSOLUTE_TIME FT_RELATIVE_TIME)],
- {}
- );
-
-my @types_ALL =
- (
- [qw (
- FT_NONE
- FT_PROTOCOL
- FT_BOOLEAN
- FT_UINT8
- FT_UINT16
- FT_UINT24
- FT_UINT32
- FT_UINT64
- FT_INT8
- FT_INT16
- FT_INT24
- FT_INT32
- FT_INT64
- FT_FLOAT
- FT_DOUBLE
- FT_ABSOLUTE_TIME
- FT_RELATIVE_TIME
- FT_STRING
- FT_STRINGZ
- FT_UINT_STRING
- FT_ETHER
- FT_BYTES
- FT_UINT_BYTES
- FT_IPv4
- FT_IPv6
- FT_IPXNET
- FT_FRAMENUM
- FT_GUID
- FT_OID
- FT_REL_OID
- FT_EUI64
- )],
- {# valid encoding args
- "a"=>"ENC_NA",
- "b"=>"ENC_LITTLE_ENDIAN",
- "c"=>"ENC_BIG_ENDIAN",
-
- "d"=>"ENC_ASCII|ENC_NA",
- "e"=>"ENC_ASCII|ENC_LITTLE_ENDIAN",
- "f"=>"ENC_ASCII|ENC_BIG_ENDIAN",
-
- "g"=>"ENC_UTF_8|ENC_NA",
- "h"=>"ENC_UTF_8|ENC_LITTLE_ENDIAN",
- "i"=>"ENC_UTF_8|ENC_BIG_ENDIAN",
-
- "j"=>"ENC_EBCDIC|ENC_NA",
- "k"=>"ENC_EBCDIC|ENC_LITTLE_ENDIAN",
- "l"=>"ENC_EBCDIC|ENC_BIG_ENDIAN",
- }
- );
-
-# ---------------------------------------------------------------------
my @findAllFunctionList =
## proto_tree_add_bitmask_text !! ToDo: encoding arg not last arg
@@ -325,19 +263,6 @@ while (my $fileName = $ARGV[0]) {
$found_total += find_all(\@findAllFunctionList, \$fileContents, $fileName);
}
-# Optional searches: (kind of obsolete ?)
-# search for (and output) proto_tree_add_item() statements with invalid encoding arg for specified field types
-# $fcn_name = "proto_tree_add_item";
-# fix_encoding_args(2, \@types_NA, $fcn_name, \$fileContents, $hfArrayEntryFieldTypeHRef, $fileName);
-# fix_encoding_args(2, \@types_INT, $fcn_name, \$fileContents, $hfArrayEntryFieldTypeHRef, $fileName);
-# fix_encoding_args(2, \@types_MISC, $fcn_name, \$fileContents, $hfArrayEntryFieldTypeHRef, $fileName);
-# fix_encoding_args(2, \@types_STRING, $fcn_name, \$fileContents, $hfArrayEntryFieldTypeHRef, $fileName);
-# fix_encoding_args(2, \@types_UINT_STRING, $fcn_name, \$fileContents, $hfArrayEntryFieldTypeHRef, $fileName);
-# fix_encoding_args(2, \@types_ALL, $fcn_name, \$fileContents, $hfArrayEntryFieldTypeHRef, $fileName);
-# search for (and output) proto_tree_add_item()$fcn_name, statements with any encoding arg for specified field types
-# fix_encoding_args(3, \@types_TIME, $fcn_name, \$fileContents, $hfArrayEntryFieldTypeHRef, $fileName);
-#
-
} # while
exit $found_total;