aboutsummaryrefslogtreecommitdiffstats
path: root/cfile.h
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2013-11-15 18:12:24 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2013-11-15 18:12:24 +0000
commit4eefe7c5a11434ac327e828dfc79972ce97906f0 (patch)
tree0e24032ee84a94c91bcc9ce28f09bbdfae67a699 /cfile.h
parent230ac546fe0be583ebb72188f364e6fb91d58c0e (diff)
Remove comment & defines for frame_data_sequence from cfile.h
It's already in epan/frame_data_sequence.c and no-one else should use it. svn path=/trunk/; revision=53341
Diffstat (limited to 'cfile.h')
-rw-r--r--cfile.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/cfile.h b/cfile.h
index 3735505128..b791235b61 100644
--- a/cfile.h
+++ b/cfile.h
@@ -54,19 +54,6 @@ typedef enum {
SD_BACKWARD
} search_direction;
-/*
- * We store the frame_data structures in a radix tree, with 1024
- * elements per level. The leaf nodes are arrays of 1024 frame_data
- * structures; the nodes above them are arrays of 1024 pointers to
- * the nodes below them. The capture_file structure has a pointer
- * to the root node.
- *
- * As frame numbers are 32 bits, and as 1024 is 2^10, that gives us
- * up to 4 levels of tree.
- */
-#define LOG2_NODES_PER_LEVEL 10
-#define NODES_PER_LEVEL (1<<LOG2_NODES_PER_LEVEL)
-
typedef struct _capture_file {
epan_t *epan;
file_state state; /* Current state of capture file */