aboutsummaryrefslogtreecommitdiffstats
path: root/capture.h
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-02-27 16:54:52 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-02-27 16:54:52 +0000
commit68e1040a4b2a74e3d9cf2467905db69997eca6b9 (patch)
treead347d861e937db7bcc8eb7b9c83e75ae27c4349 /capture.h
parent3f6b6a4b89b013d9080a9828022cd84d2a0a4935 (diff)
minor comment additions
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13533 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'capture.h')
-rw-r--r--capture.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/capture.h b/capture.h
index 3da2757d2c..a1e135944e 100644
--- a/capture.h
+++ b/capture.h
@@ -104,7 +104,8 @@ capture_opts_add_opt(capture_options *capture_opts, const char *appname, int opt
*/
extern gboolean do_capture(capture_options *capture_opts);
-/** Do the low-level work of a capture (start the capture child). */
+/** Do the low-level work of a capture (start the capture child).
+ * Returns TRUE if it succeeds, FALSE otherwise. */
extern int capture_start(capture_options *capture_opts, gboolean *stats_known, struct pcap_stat *stats);
/** Stop a capture (usually from a menu item). */
@@ -113,7 +114,8 @@ extern void capture_stop(capture_options *capture_opts);
/** Terminate the capture child cleanly when exiting. */
extern void capture_kill_child(capture_options *capture_opts);
-/** Do the low-level work of a capture. */
+/** Do the low-level work of a capture.
+ * Returns TRUE if it succeeds, FALSE otherwise. */
extern int capture_loop_start(capture_options *capture_opts, gboolean *stats_known, struct pcap_stat *stats);
/** Stop a low-level capture. */