aboutsummaryrefslogtreecommitdiffstats
path: root/doc/README.request_response_tracking
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2006-08-14 08:29:29 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2006-08-14 08:29:29 +0000
commit1e3a82cf42f53f0f578bf4b429a19d6aa7ced09d (patch)
tree6dd08df9d5efc4d94faa451f8f0eec242166f25a /doc/README.request_response_tracking
parent377944a39b9a28c95c889a550e9c1395f5082f3e (diff)
rename some structures and defines from the se_tree to the emem_tree prefix
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18894 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'doc/README.request_response_tracking')
-rw-r--r--doc/README.request_response_tracking4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/README.request_response_tracking b/doc/README.request_response_tracking
index 3a72676d7c..d22b53ca75 100644
--- a/doc/README.request_response_tracking
+++ b/doc/README.request_response_tracking
@@ -66,7 +66,7 @@ this would be a good place to store that additional info you may want to keep
around.
typedef struct _pana_conv_info_t {
- se_tree_t *pdus;
+ emem_tree_t *pdus;
} pana_conv_info_t;
@@ -112,7 +112,7 @@ actual dissector
* it to the list of information structures.
*/
pana_info = se_alloc(sizeof(pana_conv_info_t));
- pana_info->pdus=se_tree_create_non_persistent(SE_TREE_TYPE_RED_BLACK, "pana_pdus");
+ pana_info->pdus=se_tree_create_non_persistent(EMEM_TREE_TYPE_RED_BLACK, "pana_pdus");
conversation_add_proto_data(conversation, proto_pana, pana_info);
}