diff options
author | 2021-07-25 17:13:19 +0200 | |
---|---|---|
committer | 2021-07-26 03:51:19 +0200 | |
commit | 93622ece5bfd0c3e2e37c3ae643411c0284da9c8 (patch) | |
tree | 24c9e553f461669440aa76ba8792e4fc4ea0057b /src/idevice.h | |
parent | 65fddc7b67ae6bcebce54f0b55e4191332067c73 (diff) | |
download | libimobiledevice-93622ece5bfd0c3e2e37c3ae643411c0284da9c8.tar.gz libimobiledevice-93622ece5bfd0c3e2e37c3ae643411c0284da9c8.tar.bz2 |
idevice: Route OpenSSL reads/writes through internal_connection_*
Let's not allow OpenSSL to directly access our file descriptors
Diffstat (limited to 'src/idevice.h')
-rw-r--r-- | src/idevice.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/idevice.h b/src/idevice.h index 8709c9a..4e53a7f 100644 --- a/src/idevice.h +++ b/src/idevice.h | |||
@@ -68,6 +68,8 @@ struct idevice_connection_private { | |||
68 | enum idevice_connection_type type; | 68 | enum idevice_connection_type type; |
69 | void *data; | 69 | void *data; |
70 | ssl_data_t ssl_data; | 70 | ssl_data_t ssl_data; |
71 | unsigned int ssl_recv_timeout; | ||
72 | idevice_error_t status; | ||
71 | }; | 73 | }; |
72 | 74 | ||
73 | struct idevice_private { | 75 | struct idevice_private { |