summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/idevicesyslog.c5
1 files changed, 5 insertions, 0 deletions
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)
484 484
485static void device_event_cb(const idevice_event_t* event, void* userdata) 485static void device_event_cb(const idevice_event_t* event, void* userdata)
486{ 486{
487 if (use_network && event->conn_type != CONNECTION_NETWORK) {
488 return;
489 } else if (!use_network && event->conn_type != CONNECTION_USBMUXD) {
490 return;
491 }
487 if (event->event == IDEVICE_DEVICE_ADD) { 492 if (event->event == IDEVICE_DEVICE_ADD) {
488 if (!syslog) { 493 if (!syslog) {
489 if (!udid) { 494 if (!udid) {