From 02aa163b60602caa43db6a2ce9f86b3cbd5806ad Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Fri, 19 Jun 2020 00:19:45 +0200 Subject: idevicesyslog: Make sure device event callback respects the presence or absence of --network option --- tools/idevicesyslog.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/idevicesyslog.c b/tools/idevicesyslog.c index 0eed138..5e9c386 100644 --- a/tools/idevicesyslog.c +++ b/tools/idevicesyslog.c @@ -484,6 +484,11 @@ static void stop_logging(void) static void device_event_cb(const idevice_event_t* event, void* userdata) { + if (use_network && event->conn_type != CONNECTION_NETWORK) { + return; + } else if (!use_network && event->conn_type != CONNECTION_USBMUXD) { + return; + } if (event->event == IDEVICE_DEVICE_ADD) { if (!syslog) { if (!udid) { -- cgit v1.1-32-gdbae