summaryrefslogtreecommitdiff
path: root/c-sources/bustle-pcap.c
diff options
context:
space:
mode:
Diffstat (limited to 'c-sources/bustle-pcap.c')
-rw-r--r--c-sources/bustle-pcap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/c-sources/bustle-pcap.c b/c-sources/bustle-pcap.c
index 785a2e4..67f6e53 100644
--- a/c-sources/bustle-pcap.c
+++ b/c-sources/bustle-pcap.c
@@ -23,7 +23,7 @@
#include <glib/gprintf.h>
#include <gio/gunixinputstream.h>
-#include "pcap.h"
+#include "pcap-monitor.h"
static gboolean verbose = FALSE;
static gboolean quiet = FALSE;
@@ -152,12 +152,12 @@ main (
GBusType bus_type;
gchar *filename;
GError *error = NULL;
- BustlePcap *pcap;
+ BustlePcapMonitor *pcap;
g_type_init ();
parse_arguments (&argc, &argv, &bus_type, &filename);
- pcap = bustle_pcap_new (bus_type, filename, verbose, &error);
+ pcap = bustle_pcap_monitor_new (bus_type, filename, verbose, &error);
if (pcap == NULL)
{
fprintf (stderr, "%s", error->message);
@@ -173,7 +173,7 @@ main (
g_main_loop_run (loop);
g_main_loop_unref (loop);
- bustle_pcap_stop (pcap);
+ bustle_pcap_monitor_stop (pcap);
g_object_unref (pcap);
return 0;