From 5390060ec90bed0f565698a389cebc57c09c3ac8 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Thu, 7 Nov 2019 23:25:55 +0100 Subject: Add propert support for network (WiFi) devices via new idevice_new_with_options() --- src/idevice.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/idevice.h') diff --git a/src/idevice.h b/src/idevice.h index f403c55..8709c9a 100644 --- a/src/idevice.h +++ b/src/idevice.h @@ -48,10 +48,6 @@ #define DEVICE_VERSION(maj, min, patch) (((maj & 0xFF) << 16) | ((min & 0xFF) << 8) | (patch & 0xFF)) -enum connection_type { - CONNECTION_USBMUXD = 1 -}; - struct ssl_data_private { #ifdef HAVE_OPENSSL SSL *session; @@ -69,7 +65,7 @@ typedef struct ssl_data_private *ssl_data_t; struct idevice_connection_private { idevice_t device; - enum connection_type type; + enum idevice_connection_type type; void *data; ssl_data_t ssl_data; }; @@ -77,7 +73,7 @@ struct idevice_connection_private { struct idevice_private { char *udid; uint32_t mux_id; - enum connection_type conn_type; + enum idevice_connection_type conn_type; void *conn_data; int version; }; -- cgit v1.1-32-gdbae