Skip to content

Commit

Permalink
minor comment additions
Browse files Browse the repository at this point in the history
svn path=/trunk/; revision=13533
  • Loading branch information
ulflulfl committed Feb 27, 2005
1 parent 624d86f commit f2375c3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions capture.h
Original file line number Diff line number Diff line change
Expand Up @@ -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). */
Expand All @@ -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. */
Expand Down

0 comments on commit f2375c3

Please sign in to comment.