summaryrefslogtreecommitdiff
path: root/capture_opts.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-07-04 00:24:02 -0700
committerGuy Harris <guy@alum.mit.edu>2014-07-04 07:25:26 +0000
commit9e6487f24751d1c1a047ee82e158077ac67c9c68 (patch)
tree3cc4a8524062948f4951914dc9af489e0d7c4572 /capture_opts.c
parentc5643a3d257909ed3e8752cd729b9192ae719683 (diff)
downloadwireshark-9e6487f24751d1c1a047ee82e158077ac67c9c68.tar.gz
Move utility routines for capturing into a libcaputils static library.
Some of those routines are used only in dumpcap; others are used in TShark and Wireshark as well. Change-Id: I9d92483f2fcff57a7d8b6bf6bdf2870505d19fb7 Reviewed-on: https://code.wireshark.org/review/2841 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'capture_opts.c')
-rw-r--r--capture_opts.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/capture_opts.c b/capture_opts.c
index 0f2f1f8037..57139662a8 100644
--- a/capture_opts.c
+++ b/capture_opts.c
@@ -42,12 +42,13 @@
#include "capture_opts.h"
#include "ringbuffer.h"
-#include <capchild/capture_ifinfo.h>
-#include "capture-pcap-util.h"
#include <wsutil/clopts_common.h>
#include <wsutil/cmdarg_err.h>
#include <wsutil/file_util.h>
+#include "caputils/capture_ifinfo.h"
+#include "caputils/capture-pcap-util.h"
+
static gboolean capture_opts_output_to_pipe(const char *save_file, gboolean *is_pipe);