aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2011-03-22 21:07:00 +0000
committerGerald Combs <gerald@wireshark.org>2011-03-22 21:07:00 +0000
commit6e7d652034ba83f1bccf8ff9c86579399f39e5b3 (patch)
tree643f7b76a0e218541887b1bd3458d215cb5581f8 /file.c
parentfeaf55330e761ddc1812ce4fc2d93167b0940b89 (diff)
Clarify a comment.
svn path=/trunk/; revision=36270
Diffstat (limited to 'file.c')
-rw-r--r--file.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/file.c b/file.c
index becec46315..72c1f3958e 100644
--- a/file.c
+++ b/file.c
@@ -139,7 +139,11 @@ static void ref_time_packets(capture_file *cf);
#define FRAME_DATA_CHUNK_SIZE 1024
-/* this callback mechanism should possibly be replaced by the g_signal_...() stuff (if I only would know how :-) */
+/*
+ * We could probably use g_signal_...() instead of the callbacks below but that
+ * would require linking our CLI programs to libgobject and creating an object
+ * instance for the signals.
+ */
typedef struct {
cf_callback_t cb_fct;
gpointer user_data;