aboutsummaryrefslogtreecommitdiffstats
path: root/epan/uat.h
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2014-06-15 12:44:01 -0400
committerMichael Mann <mmann78@netscape.net>2014-06-16 15:19:48 +0000
commit39a14ab75fc04a5c7571276efc17df44c8039b22 (patch)
tree18fe8805d136bc74c198f7b33938fb7fe718808f /epan/uat.h
parentdd596dbcfd2b387c4206c670b924268273a6521e (diff)
Remove now-unused functions.
Change-Id: Iecf230d493b31ecab25b33c67323987459b23bd7 Reviewed-on: https://code.wireshark.org/review/2242 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/uat.h')
-rw-r--r--epan/uat.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/epan/uat.h b/epan/uat.h
index 3c8c6dda91..f018f2378a 100644
--- a/epan/uat.h
+++ b/epan/uat.h
@@ -54,7 +54,7 @@ extern "C" {
*
* UATs are meant for short tables of user data (passwords and such) there's
* no quick access, you must iterate through them each time to fetch the record
- * you are looking for. Use uat_dup() or uat_se_dup() if necessary.
+ * you are looking for.
*
* Only users via gui or editing the file can add/remove records your code cannot.
*/
@@ -299,15 +299,6 @@ gboolean uat_load_str(uat_t* uat_in, char* entry, char** err);
*/
uat_t *uat_find(gchar *name);
-/*
- * uat_dup()
- * uat_se_dup()
- * make a reliable copy of an uat for internal use,
- * so that pointers to records can be kept through calls.
- * return NULL on zero len.
- */
-void* uat_dup(uat_t*, guint* len_p); /* to be freed */
-void* uat_se_dup(uat_t*, guint* len_p);
WS_DLL_PUBLIC
uat_t* uat_get_table_by_name(const char* name);