summaryrefslogtreecommitdiff
path: root/epan/uat-int.h
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2007-08-28 15:18:32 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2007-08-28 15:18:32 +0000
commitdfbac007529fc7ce0f6405d1a0ba30560cadf0b8 (patch)
treea234af0150b064f34c3a6229e1754c32f6d1ddba /epan/uat-int.h
parent8fde3b7561ce61061c6d9ae8149c1ea916fdd7cb (diff)
downloadwireshark-dfbac007529fc7ce0f6405d1a0ba30560cadf0b8.tar.gz
SNMP:
- As noted by Thomas Anders values are not added to the tree anymore. Move the calling of subdissectors to the end of the function, so that the value is added to the tree. - add port 8161 to be decoded as SNMP (hey, it's on IANA's services file!) UAT: - do not have the uat reloaded. OIDS: - do not complain if renaming an OID to an identical name svn path=/trunk/; revision=22704
Diffstat (limited to 'epan/uat-int.h')
-rw-r--r--epan/uat-int.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/epan/uat-int.h b/epan/uat-int.h
index 8735cd672a..1dd8c947e6 100644
--- a/epan/uat-int.h
+++ b/epan/uat-int.h
@@ -63,6 +63,7 @@ struct _uat_t {
gboolean changed;
uat_rep_t* rep;
uat_rep_free_cb_t free_rep;
+ gboolean loaded;
};
gchar* uat_get_actual_filename(uat_t* uat, gboolean for_writing);
@@ -83,8 +84,6 @@ void uat_clear(uat_t*);
gboolean uat_save(uat_t* , char** );
-gboolean uat_load(uat_t* , char** );
-
void uat_load_all(void);
#define UAT_UPDATE(uat) do { *((uat)->user_ptr) = (void*)((uat)->user_data->data); *((uat)->nrows_p) = (uat)->user_data->len; } while(0)