diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2005-04-16 20:08:00 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2005-04-16 20:08:00 +0000 |
commit | 83dc83abd8dca40a7ee13b97855dbda4f01737ec (patch) | |
tree | 3bac5a359bfb27c7a0c59f4cd0b7ed229ff1208e /capture.h | |
parent | 708dae1a17665c8dd4ccac770e4b509dc09fc0b1 (diff) | |
download | wireshark-83dc83abd8dca40a7ee13b97855dbda4f01737ec.tar.gz wireshark-83dc83abd8dca40a7ee13b97855dbda4f01737ec.tar.bz2 wireshark-83dc83abd8dca40a7ee13b97855dbda4f01737ec.zip |
rename capture_clear() to capture_restart()
statusbar update should work now even in capture error case
svn path=/trunk/; revision=14105
Diffstat (limited to 'capture.h')
-rw-r--r-- | capture.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -107,8 +107,8 @@ extern gboolean capture_start(capture_options *capture_opts); /** Stop a capture session (usually from a menu item). */ extern void capture_stop(capture_options *capture_opts); -/** Clear the current captured packets and start again. */ -extern void capture_clear(capture_options *capture_opts); +/** Restart the current captured packets and start again. */ +extern void capture_restart(capture_options *capture_opts); /** Terminate the capture child cleanly when exiting. */ extern void capture_kill_child(capture_options *capture_opts); |