diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2005-02-27 16:54:52 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2005-02-27 16:54:52 +0000 |
commit | f2375c312737476024e659fa6d965a4c0580ed50 (patch) | |
tree | ad347d861e937db7bcc8eb7b9c83e75ae27c4349 /capture.h | |
parent | 624d86fe0dd8dab7939241dc5b1a5b6cd1e5cf34 (diff) | |
download | wireshark-f2375c312737476024e659fa6d965a4c0580ed50.tar.gz wireshark-f2375c312737476024e659fa6d965a4c0580ed50.tar.bz2 wireshark-f2375c312737476024e659fa6d965a4c0580ed50.zip |
minor comment additions
svn path=/trunk/; revision=13533
Diffstat (limited to 'capture.h')
-rw-r--r-- | capture.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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. */ |