aboutsummaryrefslogtreecommitdiffstats
path: root/cfile.h
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2013-08-01 20:59:38 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2013-08-01 20:59:38 +0000
commit08eb36b5af5da365087ea19194a0a00bd1310ce2 (patch)
treebc8a0b2ba1a0816c79a164025e72873a4cbab715 /cfile.h
parent6c5e16185dfd4c9e955618f56ac8827ad7eda9e7 (diff)
Remove fdata->opt_comment, add pkt_comment to pinfo
Original (read from file) comments can be accessed by pkthdr->opt_comment Keep user comments in seperated BST, add new method for epan session to get it. svn path=/trunk/; revision=51090
Diffstat (limited to 'cfile.h')
-rw-r--r--cfile.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cfile.h b/cfile.h
index c1ff88f1b2..3fa388002b 100644
--- a/cfile.h
+++ b/cfile.h
@@ -124,6 +124,7 @@ typedef struct _capture_file {
GTree *edited_frames; /* BST with modified frames */
#endif
gpointer window; /* Top-level window associated with file */
+ GTree *frames_user_comments; /* BST with user comments for frames (key = frame_data) */
} capture_file;
extern void cap_file_init(capture_file *cf);