diff options
author | Jakub Zawadzki <darkjames-ws@darkjames.pl> | 2013-11-15 18:12:24 +0000 |
---|---|---|
committer | Jakub Zawadzki <darkjames-ws@darkjames.pl> | 2013-11-15 18:12:24 +0000 |
commit | 4eefe7c5a11434ac327e828dfc79972ce97906f0 (patch) | |
tree | 0e24032ee84a94c91bcc9ce28f09bbdfae67a699 /cfile.h | |
parent | 230ac546fe0be583ebb72188f364e6fb91d58c0e (diff) | |
download | wireshark-4eefe7c5a11434ac327e828dfc79972ce97906f0.tar.gz wireshark-4eefe7c5a11434ac327e828dfc79972ce97906f0.tar.bz2 wireshark-4eefe7c5a11434ac327e828dfc79972ce97906f0.zip |
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.h | 13 |
1 files changed, 0 insertions, 13 deletions
@@ -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 */ |