aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rpc.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-04-02 00:04:18 +0000
committerGuy Harris <guy@alum.mit.edu>2002-04-02 00:04:18 +0000
commit49d51f81e54ba2a260ff8c63b0c214ded90b5702 (patch)
treeb0cd86ed761cc6710b829814a97e5c7f6cff0285 /packet-rpc.h
parent94a3e0ce9ffb56fbaefb250003b165d6bcdf9b54 (diff)
Get rid of declarations of routines and structures and function types
that we no longer use as of 0.9.0 (when we got rid of support for non-tvbuffified dissectors). svn path=/trunk/; revision=5077
Diffstat (limited to 'packet-rpc.h')
-rw-r--r--packet-rpc.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/packet-rpc.h b/packet-rpc.h
index f6db687faa..84ff8a480e 100644
--- a/packet-rpc.h
+++ b/packet-rpc.h
@@ -1,6 +1,6 @@
/* packet-rpc.h
*
- * $Id: packet-rpc.h,v 1.32 2002/01/21 07:36:41 guy Exp $
+ * $Id: packet-rpc.h,v 1.33 2002/04/02 00:04:18 guy Exp $
*
* (c) 1999 Uwe Girlich
*
@@ -98,16 +98,8 @@ typedef struct _rpc_call_info_value {
} rpc_call_info_value;
-typedef int (old_dissect_function_t)(const u_char* pd, int offset, frame_data* fd, proto_tree* tree);
typedef int (dissect_function_t)(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree* tree);
-typedef struct _old_vsff {
- guint32 value;
- gchar *strptr;
- old_dissect_function_t *dissect_call;
- old_dissect_function_t *dissect_reply;
-} old_vsff;
-
typedef struct _vsff {
guint32 value;
gchar *strptr;
@@ -117,7 +109,6 @@ typedef struct _vsff {
extern const value_string rpc_auth_flavor[];
-extern void old_rpc_init_proc_table(guint prog, guint vers, const old_vsff *proc_table);
extern void rpc_init_proc_table(guint prog, guint vers, const vsff *proc_table);
extern void rpc_init_prog(int proto, guint32 prog, int ett);
extern char *rpc_prog_name(guint32 prog);