aboutsummaryrefslogtreecommitdiffstats
path: root/doc/eproto2sgml
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-04-19 23:17:30 +0000
committerGuy Harris <guy@alum.mit.edu>2001-04-19 23:17:30 +0000
commit8f88bdae4a619d7b20582f9c82e57a7ca295e6c6 (patch)
tree582eaa5c5a88d8905e43f37953bcc57df0e436c9 /doc/eproto2sgml
parent4caa331d219bfd16bf2183221655aec1d50bf17f (diff)
"ethereal -G" and "tethereal -G" won't show the pseudo-field for
"proto_tree_add_text()" any more, so the scripts that take that output and massage it into various forms don't have to check for it any more. Get rid of the FT_-name-to-description filtering in eproto2sgml, as it's not used, and fix it in the other two scripts to correspond to the current list of FT_ values. svn path=/trunk/; revision=3336
Diffstat (limited to 'doc/eproto2sgml')
-rw-r--r--doc/eproto2sgml29
1 files changed, 1 insertions, 28 deletions
diff --git a/doc/eproto2sgml b/doc/eproto2sgml
index 0a14859b53..e81fe8eb8a 100644
--- a/doc/eproto2sgml
+++ b/doc/eproto2sgml
@@ -8,30 +8,7 @@
# will be replaced by the pod-formatted glossary
# STDOUT is the output
#
-# $Id: eproto2sgml,v 1.1 2000/08/08 01:56:57 sharpe Exp $
-
-%ftenum_names = (
- 'FT_NONE', 'No value',
- 'FT_BOOLEAN', 'Boolean',
- 'FT_UINT8', 'Unsigned 8-bit integer',
- 'FT_UINT16', 'Unsigned 16-bit integer',
- 'FT_UINT24', 'Unsigned 24-bit integer',
- 'FT_UINT32', 'Unsigned 32-bit integer',
- 'FT_INT8', 'Signed 8-bit integer',
- 'FT_INT16', 'Signed 16-bit integer',
- 'FT_INT24', 'Signed 24-bit integer',
- 'FT_INT32', 'Signed 32-bit integer',
- 'FT_ABSOLUTE_TIME', 'Date/Time stamp',
- 'FT_RELATIVE_TIME', 'Time duration',
- 'FT_STRING', 'String',
- 'FT_DOUBLE', 'Double-precision floating point',
- 'FT_ETHER', '6-byte Hardware (MAC) Address',
- 'FT_BYTES', 'Byte array',
- 'FT_IPv4', 'IPv4 address',
- 'FT_IPv6', 'IPv6 address',
- 'FT_IPXNET', 'IPX network or server name',
- 'FT_TEXT_ONLY', 'Text-only. Not filterable'
-);
+# $Id: eproto2sgml,v 1.2 2001/04/19 23:17:30 guy Exp $
# Read all the data into memory
while (<STDIN>) {
@@ -81,10 +58,6 @@ sub create_dfilter_table {
# Print each protocol
for $proto_name (sort keys %proto_abbrev) {
- if ($proto_name eq 'Text' && $proto_abbrev{$proto_name} eq 'text') {
- next;
- }
-
print " <listitem><para>$proto_name</></>\n";