aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-08-25 03:30:40 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-08-25 03:30:40 +0000
commit7c60b55377cf38ea1e757f56df56404087169ec6 (patch)
tree5dd2f7487f25e41ea35d0319edfe80cb0d77764b /plugins
parent7669703a1693f99a8da1dc2f337b08217783f59d (diff)
From Lars Roland: add "tvb_get_ntoh64()" to the list of routines
callable from plugins and the list of routines exported from libethereal.dll. Do the same for "tvb_get_letoh64()". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11826 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Xass-list2
-rw-r--r--plugins/Xplugin_api.c2
-rw-r--r--plugins/Xplugin_api.h2
-rw-r--r--plugins/Xplugin_api_decls.h2
-rw-r--r--plugins/Xplugin_table.h2
5 files changed, 9 insertions, 1 deletions
diff --git a/plugins/Xass-list b/plugins/Xass-list
index e5922ed065..76b15d1ad5 100644
--- a/plugins/Xass-list
+++ b/plugins/Xass-list
@@ -86,4 +86,4 @@ rpc_prog_hf, rpc_roundup, dissect_rpc_bool, dissect_rpc_string,
dissect_rpc_opaque_data, dissect_rpc_data, dissect_rpc_bytes,
dissect_rpc_list, dissect_rpc_array, dissect_rpc_uint32, dissect_rpc_uint64,
dissect_rpc_indir_call, dissect_rpc_indir_reply, crc16_ccitt_tvb,
-
+tvb_get_letoh64, tvb_get_ntoh64,
diff --git a/plugins/Xplugin_api.c b/plugins/Xplugin_api.c
index 6f2c5d4305..db50b9caf5 100644
--- a/plugins/Xplugin_api.c
+++ b/plugins/Xplugin_api.c
@@ -292,3 +292,5 @@ p_dissect_rpc_uint64 = pat->p_dissect_rpc_uint64;
p_dissect_rpc_indir_call = pat->p_dissect_rpc_indir_call;
p_dissect_rpc_indir_reply = pat->p_dissect_rpc_indir_reply;
p_crc16_ccitt_tvb = pat->p_crc16_ccitt_tvb;
+p_tvb_get_letoh64 = pat->p_tvb_get_letoh64;
+p_tvb_get_ntoh64 = pat->p_tvb_get_ntoh64;
diff --git a/plugins/Xplugin_api.h b/plugins/Xplugin_api.h
index 411cf02f72..a627927f79 100644
--- a/plugins/Xplugin_api.h
+++ b/plugins/Xplugin_api.h
@@ -292,3 +292,5 @@
#define dissect_rpc_indir_call (*p_dissect_rpc_indir_call)
#define dissect_rpc_indir_reply (*p_dissect_rpc_indir_reply)
#define crc16_ccitt_tvb (*p_crc16_ccitt_tvb)
+#define tvb_get_letoh64 (*p_tvb_get_letoh64)
+#define tvb_get_ntoh64 (*p_tvb_get_ntoh64)
diff --git a/plugins/Xplugin_api_decls.h b/plugins/Xplugin_api_decls.h
index 0529d75e79..46725b1ce6 100644
--- a/plugins/Xplugin_api_decls.h
+++ b/plugins/Xplugin_api_decls.h
@@ -292,3 +292,5 @@ addr_dissect_rpc_uint64 p_dissect_rpc_uint64;
addr_dissect_rpc_indir_call p_dissect_rpc_indir_call;
addr_dissect_rpc_indir_reply p_dissect_rpc_indir_reply;
addr_crc16_ccitt_tvb p_crc16_ccitt_tvb;
+addr_tvb_get_letoh64 p_tvb_get_letoh64;
+addr_tvb_get_ntoh64 p_tvb_get_ntoh64;
diff --git a/plugins/Xplugin_table.h b/plugins/Xplugin_table.h
index 7a3a4a7d00..dc108d9fb2 100644
--- a/plugins/Xplugin_table.h
+++ b/plugins/Xplugin_table.h
@@ -292,3 +292,5 @@ typedef int (*addr_dissect_rpc_uint64) (tvbuff_t *, proto_tree *, int, int);
typedef int (*addr_dissect_rpc_indir_call) (tvbuff_t *, packet_info *, proto_tree *, int, int, guint32, guint32, guint32);
typedef int (*addr_dissect_rpc_indir_reply) (tvbuff_t *, packet_info *, proto_tree *, int, int, int, int, int);
typedef guint16 (*addr_crc16_ccitt_tvb) (tvbuff_t *, unsigned int);
+typedef guint64 (*addr_tvb_get_letoh64) (tvbuff_t *, gint);
+typedef guint64 (*addr_tvb_get_ntoh64) (tvbuff_t *, gint);