Add "asn1_id_decode1()" to the list of exported functions.

svn path=/trunk/; revision=8936
This commit is contained in:
Guy Harris 2003-11-11 06:10:57 +00:00
parent 22557bd2f5
commit 43d26ce738
6 changed files with 8 additions and 2 deletions

View File

@ -71,4 +71,4 @@ dissect_per_sequence, dissect_per_octet_string, dissect_per_restricted_character
dissector_add_string, dissector_delete_string, dissector_change_string,
dissector_reset_string, dissector_try_string, dissector_get_string_handle,
get_datafile_path, get_tempfile_path, register_heur_dissector_list,
dissector_try_heuristic,
dissector_try_heuristic, asn1_id_decode1,

View File

@ -243,3 +243,4 @@ p_get_datafile_path = pat->p_get_datafile_path;
p_get_tempfile_path = pat->p_get_tempfile_path;
p_register_heur_dissector_list = pat->p_register_heur_dissector_list;
p_dissector_try_heuristic = pat->p_dissector_try_heuristic;
p_asn1_id_decode1 = pat->p_asn1_id_decode1;

View File

@ -243,3 +243,4 @@
#define get_tempfile_path (*p_get_tempfile_path)
#define register_heur_dissector_list (*p_register_heur_dissector_list)
#define dissector_try_heuristic (*p_dissector_try_heuristic)
#define asn1_id_decode1 (*p_asn1_id_decode1)

View File

@ -243,3 +243,4 @@ addr_get_datafile_path p_get_datafile_path;
addr_get_tempfile_path p_get_tempfile_path;
addr_register_heur_dissector_list p_register_heur_dissector_list;
addr_dissector_try_heuristic p_dissector_try_heuristic;
addr_asn1_id_decode1 p_asn1_id_decode1;

View File

@ -243,3 +243,4 @@ typedef char *(*addr_get_datafile_path) (const char *);
typedef char *(*addr_get_tempfile_path) (const char *);
typedef void (*addr_register_heur_dissector_list) (const char *, heur_dissector_list_t *);
typedef gboolean (*addr_dissector_try_heuristic) (heur_dissector_list_t, tvbuff_t *, packet_info *, proto_tree *);
typedef int (*addr_asn1_id_decode1) (ASN1_SCK *, guint *);

View File

@ -1,7 +1,7 @@
/* plugin_api_list.c
* Used to generate various included files for plugin API
*
* $Id: plugin_api_list.c,v 1.13 2003/11/02 23:12:34 gerald Exp $
* $Id: plugin_api_list.c,v 1.14 2003/11/11 06:10:07 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -385,3 +385,5 @@ void register_heur_dissector_list(const char *name,
heur_dissector_list_t *list);
gboolean dissector_try_heuristic(heur_dissector_list_t sub_dissectors,
tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree);
int asn1_id_decode1(ASN1_SCK *asn1, guint *tag);