diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-10-11 06:01:16 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-10-11 06:01:16 +0000 |
commit | 54ecbe2d4e4d1eaf2d1e8ae0789d4378f3b9c874 (patch) | |
tree | cdb2790de7fc524542dbc3de9c99430d6296ce46 /capture.h | |
parent | 788a6283ffcabd89391817ff3d436a1965203d6b (diff) | |
download | wireshark-54ecbe2d4e4d1eaf2d1e8ae0789d4378f3b9c874.tar.gz wireshark-54ecbe2d4e4d1eaf2d1e8ae0789d4378f3b9c874.tar.bz2 wireshark-54ecbe2d4e4d1eaf2d1e8ae0789d4378f3b9c874.zip |
Santeri Paavolainen's patch to add a "Capture->Stop" menu item to let
you stop an "Update list of packets in real time" capture from the main
window as well as from the capture statistics dialog.
svn path=/trunk/; revision=2487
Diffstat (limited to 'capture.h')
-rw-r--r-- | capture.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,7 +1,7 @@ /* capture.h * Definitions for packet capture windows * - * $Id: capture.h,v 1.23 2000/09/15 05:32:19 guy Exp $ + * $Id: capture.h,v 1.24 2000/10/11 06:01:14 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -44,6 +44,9 @@ void do_capture(char *capfile_name); /* Do the low-level work of a capture. */ int capture(void); +/* Stop a capture from a menu item. */ +void capture_stop(void); + #endif /* HAVE_LIBPCAP */ #define EMPTY_FILTER "" |