aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan_dissect.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-10-08 18:33:00 +0000
committerGuy Harris <guy@alum.mit.edu>2012-10-08 18:33:00 +0000
commite6616b7c2f7483c9765b4feeb21fa41f1ffdafd0 (patch)
treeba427294104fc9288ae8f76fbbff27670b8039bc /epan/epan_dissect.h
parent4f1eb84444a5f4392581bf9c3d1825af8c7526d9 (diff)
Rename emem_header_t to emem_pool_t to better indicate what it can be
used for - it represents a memory pool that parcels out memory from larger allocated chunks (reducing the number of individual malloc-style calls that are made) and that can be freed in its entirety. svn path=/trunk/; revision=45400
Diffstat (limited to 'epan/epan_dissect.h')
-rw-r--r--epan/epan_dissect.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/epan_dissect.h b/epan/epan_dissect.h
index 8a95bfe808..5969182d3c 100644
--- a/epan/epan_dissect.h
+++ b/epan/epan_dissect.h
@@ -42,7 +42,7 @@ extern "C" {
struct _epan_dissect_t {
tvbuff_t *tvb;
proto_tree *tree;
- emem_header_t *mem;
+ emem_pool_t *mem;
packet_info pi;
};