aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dfilter/dfilter-int.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-04-29 07:55:32 +0000
committerGuy Harris <guy@alum.mit.edu>2002-04-29 07:55:32 +0000
commit30f02bc99cb3a578758c76cc6cb0c8278273e6be (patch)
treea3155a07ee4729db28f98e60122b25f4f6a714a0 /epan/dfilter/dfilter-int.h
parent6c553bf99839b464efb77891dfb9b9d473b1a6b5 (diff)
Move the code to build the balanced tree of fields into "proto_init()",
move the code from "dfilter_lookup_token()" into "proto_registrar_get_byname()", and get rid of "dfilter_lookup_token()" and have its callers call "proto_registrar_get_byname()" instead. svn path=/trunk/; revision=5287
Diffstat (limited to 'epan/dfilter/dfilter-int.h')
-rw-r--r--epan/dfilter/dfilter-int.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/epan/dfilter/dfilter-int.h b/epan/dfilter/dfilter-int.h
index 1bd2f04754..4397e001c1 100644
--- a/epan/dfilter/dfilter-int.h
+++ b/epan/dfilter/dfilter-int.h
@@ -1,5 +1,5 @@
/*
- * $Id: dfilter-int.h,v 1.5 2002/01/21 07:37:37 guy Exp $
+ * $Id: dfilter-int.h,v 1.6 2002/04/29 07:55:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -57,11 +57,6 @@ void Dfilter(void*, int, stnode_t*, dfwork_t*);
/* Scanner's lval */
extern stnode_t *df_lval;
-/* Given a field abbreviation, returns the proto ID, or -1 if
- * it doesn't exist. */
-header_field_info*
-dfilter_lookup_token(char *abbrev);
-
/* Set dfilter_error_msg_buf and dfilter_error_msg */
void
dfilter_fail(char *format, ...);