Fix a couple of distcheck problems:
authorGerald Combs <gerald@wireshark.org>
Fri, 4 Feb 2005 15:22:25 +0000 (15:22 -0000)
committerGerald Combs <gerald@wireshark.org>
Fri, 4 Feb 2005 15:22:25 +0000 (15:22 -0000)
Update conversation_new and find_conversation in plugin_api_list.c and
associated files.

Add packet-dcerpc-butc.h to the distribution.

svn path=/trunk/; revision=13288

epan/dissectors/Makefile.common
plugins/Xass-list
plugins/Xplugin_api.c
plugins/Xplugin_api.h
plugins/Xplugin_api_decls.h
plugins/Xplugin_table.h
plugins/plugin_api_list.c

index aa93e1a9a71e6dfdbbc04349698a8d3d3f2f6549..fafe617e0846ca2ed739f007df562d5719f26a11 100644 (file)
@@ -596,6 +596,7 @@ DISSECTOR_INCLUDES =        \
        packet-dccp.h   \
        packet-dcerpc-atsvc.h   \
        packet-dcerpc-browser.h \
+       packet-dcerpc-butc.h    \
        packet-dcerpc-dce122.h  \
        packet-dcerpc-dcom.h    \
        packet-dcerpc-dfs.h     \
index be0260a4422adcb072424eb35af47539f45ac245..2770ba00ddd0c917f599cf8921a0824618cadaf4 100644 (file)
@@ -1,4 +1,4 @@
-/* This file is generated by plugin_gen.py, do not edit. */
+/* This file is generated by ./plugin_gen.py, do not edit. */
 
 check_col, col_clear, col_add_fstr, col_append_fstr, col_prepend_fstr,
 col_add_str, col_append_str, col_set_str, register_init_routine,
index 61a0a56b10349d34702516210e569fc7e6bae84d..1544bb19085265e1eb7f5df02c32444974c5bd65 100644 (file)
@@ -1,4 +1,4 @@
-/* This file is generated by plugin_gen.py, do not edit. */
+/* This file is generated by ./plugin_gen.py, do not edit. */
 
 p_check_col = pat->p_check_col;
 p_col_clear = pat->p_col_clear;
index edcfe5d7b8559746b198c98aea1642fe0318cb03..950b15191fa552c6ee1d8b48b9ec49d4ace689ff 100644 (file)
@@ -1,4 +1,4 @@
-/* This file is generated by plugin_gen.py, do not edit. */
+/* This file is generated by ./plugin_gen.py, do not edit. */
 
 #define check_col (*p_check_col)
 #define col_clear (*p_col_clear)
index 50ef39babce1fc43b629a69a62267678606563de..4f0698897f70a5e2c41641ebb0d2ce0c3b6ecfd1 100644 (file)
@@ -1,4 +1,4 @@
-/* This file is generated by plugin_gen.py, do not edit. */
+/* This file is generated by ./plugin_gen.py, do not edit. */
 
 addr_check_col p_check_col;
 addr_col_clear p_col_clear;
index 91cee1bd168e5b9faf1fa4ddea62193608f9d2cf..d60d75316aadd9f0b498072f9941ade1e65a98dd 100644 (file)
@@ -1,4 +1,4 @@
-/* This file is generated by plugin_gen.py, do not edit. */
+/* This file is generated by ./plugin_gen.py, do not edit. */
 
 typedef gint (*addr_check_col) (column_info *, gint);
 typedef void (*addr_col_clear) (column_info *, gint);
@@ -12,8 +12,8 @@ typedef void (*addr_register_init_routine) (void (*) (void));
 typedef void (*addr_register_postseq_cleanup_routine) (void (*) (void));
 typedef gchar *(*addr_match_strval) (guint32, const value_string *);
 typedef gchar *(*addr_val_to_str) (guint32, const value_string *, const char *);
-typedef conversation_t *(*addr_conversation_new) (address *, address *, port_type, guint32, guint32, guint);
-typedef conversation_t *(*addr_find_conversation) (address *, address *, port_type, guint32, guint32, guint);
+typedef conversation_t *(*addr_conversation_new) (guint32, address *, address *, port_type, guint32, guint32, guint);
+typedef conversation_t *(*addr_find_conversation) (guint32, address *, address *, port_type, guint32, guint32, guint);
 typedef void (*addr_conversation_set_dissector) (conversation_t *, dissector_handle_t);
 typedef int (*addr_proto_register_protocol) (char *, char *, char *);
 typedef void (*addr_proto_register_field_array) (int, hf_register_info *, int);
index 3bb922d58ea39f575627dd365d70489a1fe99b60..f666a26192c2c58ccc34430b8fd61e83ed638c1d 100644 (file)
@@ -62,9 +62,9 @@ void register_postseq_cleanup_routine(void (*func)(void));
 gchar* match_strval(guint32, const value_string*);
 gchar* val_to_str(guint32, const value_string *, const char *);
 
-conversation_t *conversation_new(address *, address *,
+conversation_t *conversation_new(guint32, address *, address *,
     port_type, guint32, guint32, guint);
-conversation_t *find_conversation(address *, address *,
+conversation_t *find_conversation(guint32, address *, address *,
     port_type, guint32, guint32, guint);
 void conversation_set_dissector(conversation_t *,
     dissector_handle_t);