aboutsummaryrefslogtreecommitdiffstats
path: root/asn1
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-08-14 08:29:29 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-08-14 08:29:29 +0000
commit8ce8e719e0a4b95b7720841f025918c280ded13d (patch)
tree6dd08df9d5efc4d94faa451f8f0eec242166f25a /asn1
parentc6c15e8b6b0d431b6da83512984718cd8b072b01 (diff)
rename some structures and defines from the se_tree to the emem_tree prefix
svn path=/trunk/; revision=18894
Diffstat (limited to 'asn1')
-rw-r--r--asn1/h248/packet-h248-template.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/asn1/h248/packet-h248-template.c b/asn1/h248/packet-h248-template.c
index 2a6cb131d6..1a101facdf 100644
--- a/asn1/h248/packet-h248-template.c
+++ b/asn1/h248/packet-h248-template.c
@@ -150,10 +150,10 @@ static GHashTable* h248_wild_terms = NULL;
static dissector_table_t h248_package_bin_dissector_table=NULL;
#endif
-static se_tree_t* msgs = NULL;
-static se_tree_t* trxs = NULL;
-static se_tree_t* ctxs_by_trx = NULL;
-static se_tree_t* ctxs = NULL;
+static emem_tree_t* msgs = NULL;
+static emem_tree_t* trxs = NULL;
+static emem_tree_t* ctxs_by_trx = NULL;
+static emem_tree_t* ctxs = NULL;
static gboolean h248_prefs_initialized = FALSE;
static gboolean keep_persistent_data = FALSE;
@@ -1150,7 +1150,7 @@ static h248_msg_t* h248_msg(packet_info* pinfo, int o) {
if (keep_persistent_data) {
- se_tree_key_t key[] = {
+ emem_tree_key_t key[] = {
{1,NULL},
{1,NULL},
{0,NULL},
@@ -1226,7 +1226,7 @@ static h248_trx_t* h248_trx(h248_msg_t* m ,guint32 t_id , h248_trx_type_t type)
DISSECTOR_ASSERT(! "a trx that should exist does not!" );
} else {
- se_tree_key_t key[] = {
+ emem_tree_key_t key[] = {
{1,NULL},
{1,NULL},
{1,NULL},
@@ -1294,14 +1294,14 @@ static h248_ctx_t* h248_ctx(h248_msg_t* m, h248_trx_t* t, guint32 c_id) {
if ( !m || !t ) return NULL;
if (keep_persistent_data) {
- se_tree_key_t ctx_key[] = {
+ emem_tree_key_t ctx_key[] = {
{1,NULL},
{1,NULL},
{1,NULL},
{0,NULL}
};
- se_tree_key_t trx_key[] = {
+ emem_tree_key_t trx_key[] = {
{1,NULL},
{1,NULL},
{1,NULL},
@@ -2131,10 +2131,10 @@ void proto_register_h248(void) {
register_init_routine( &h248_init );
- msgs = se_tree_create(SE_TREE_TYPE_RED_BLACK, "h248_msgs");
- trxs = se_tree_create(SE_TREE_TYPE_RED_BLACK, "h248_trxs");
- ctxs_by_trx = se_tree_create(SE_TREE_TYPE_RED_BLACK, "h248_ctxs_by_trx");
- ctxs = se_tree_create(SE_TREE_TYPE_RED_BLACK, "h248_ctxs");
+ msgs = se_tree_create(EMEM_TREE_TYPE_RED_BLACK, "h248_msgs");
+ trxs = se_tree_create(EMEM_TREE_TYPE_RED_BLACK, "h248_trxs");
+ ctxs_by_trx = se_tree_create(EMEM_TREE_TYPE_RED_BLACK, "h248_ctxs_by_trx");
+ ctxs = se_tree_create(EMEM_TREE_TYPE_RED_BLACK, "h248_ctxs");
}