summaryrefslogtreecommitdiff
path: root/ui/decode_as_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/decode_as_utils.h')
-rw-r--r--ui/decode_as_utils.h23
1 files changed, 4 insertions, 19 deletions
diff --git a/ui/decode_as_utils.h b/ui/decode_as_utils.h
index d33da85748..729c20da5b 100644
--- a/ui/decode_as_utils.h
+++ b/ui/decode_as_utils.h
@@ -39,6 +39,10 @@ extern "C" {
*/
void load_decode_as_entries(void);
+/** Write out the "decode as" entries of the current profile.
+ */
+void save_decode_as_entries(void);
+
/** This routine creates one entry in the list of protocol dissector
* that need to be reset. It is called by the g_hash_table_foreach
* routine once for each changed entry in a dissector table.
@@ -69,25 +73,6 @@ void decode_build_reset_list (const gchar *table_name, ftenum_t selector_type,
*/
void decode_clear_all(void);
-/** Open the "decode_as_entries" configuration file and write its header.
- *
- * Entries should be written with decode_as_write_entry(). The file should
- * be closed with fclose().
- *
- * @return A valid FILE pointer on success, NULL on failure.
- */
-FILE *decode_as_open(void);
-
-/** Write an entry to the "decode_as_entries" file.
- *
- * @param[in] da_file FILE pointer returned by decode_as_open().
- * @param[in] table_name A short decode_as table name.
- * @param[in] selector Integer or string selector, e.g. 80 for TCP port 80.
- * @param[in] default_proto The default protocol for the selector, or "(none)".
- * @param[in] current_proto The desired protocol for the selector, or "(none)" to disable.
- */
-void decode_as_write_entry(FILE *da_file, const char *table_name, const char *selector, const char *default_proto, const char *current_proto);
-
#ifdef __cplusplus
}
#endif /* __cplusplus */