diff options
author | Martin Szulecki | 2012-04-01 01:42:28 +0200 |
---|---|---|
committer | Martin Szulecki | 2012-10-21 14:19:50 +0200 |
commit | 8b61d177dbfa5c12d582bd58df8243b6d21571b8 (patch) | |
tree | e1df30e08431d0f8f3c480bdd394d9a740711015 /include | |
parent | d09e25b69d2744ba7a6a88cc58d9cc8fc4810d2a (diff) | |
download | libimobiledevice-8b61d177dbfa5c12d582bd58df8243b6d21571b8.tar.gz libimobiledevice-8b61d177dbfa5c12d582bd58df8243b6d21571b8.tar.bz2 |
diagnostics_relay: Add basic new service implementation
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile.am | 3 | ||||
-rw-r--r-- | include/libimobiledevice/diagnostics_relay.h | 58 |
2 files changed, 60 insertions, 1 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index 849295f..957d533 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -14,4 +14,5 @@ nobase_include_HEADERS = libimobiledevice/libimobiledevice.h \ libimobiledevice/house_arrest.h \ libimobiledevice/mobilebackup2.h \ libimobiledevice/misagent.h \ - libimobiledevice/restore.h + libimobiledevice/restore.h\ + libimobiledevice/diagnostics_relay.h diff --git a/include/libimobiledevice/diagnostics_relay.h b/include/libimobiledevice/diagnostics_relay.h new file mode 100644 index 0000000..58c26df --- /dev/null +++ b/include/libimobiledevice/diagnostics_relay.h @@ -0,0 +1,58 @@ +/** + * @file libimobiledevice/diagnostics_relay.h + * @brief Request iOS diagnostic information from device. + * \internal + * + * Copyright (c) 2012 Martin Szulecki, All Rights Reserved. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef IDIAGNOSTICS_RELAY_H +#define IDIAGNOSTICS_RELAY_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include <libimobiledevice/libimobiledevice.h> + +/** @name Error Codes */ +/*@{*/ +#define DIAGNOSTICS_RELAY_E_SUCCESS 0 +#define DIAGNOSTICS_RELAY_E_INVALID_ARG -1 +#define DIAGNOSTICS_RELAY_E_PLIST_ERROR -2 +#define DIAGNOSTICS_RELAY_E_MUX_ERROR -3 + +#define DIAGNOSTICS_RELAY_E_UNKNOWN_ERROR -256 +/*@}*/ + +/** Represents an error code. */ +typedef int16_t diagnostics_relay_error_t; + +typedef struct diagnostics_relay_client_private diagnostics_relay_client_private; +typedef diagnostics_relay_client_private *diagnostics_relay_client_t; /**< The client handle. */ + +diagnostics_relay_error_t diagnostics_relay_client_new(idevice_t device, uint16_t port, diagnostics_relay_client_t *client); +diagnostics_relay_error_t diagnostics_relay_client_free(diagnostics_relay_client_t client); + +diagnostics_relay_error_t diagnostics_relay_goodbye(diagnostics_relay_client_t client); +diagnostics_relay_error_t diagnostics_relay_request_diagnostics(diagnostics_relay_client_t client, plist_t* diagnostics); + +#ifdef __cplusplus +} +#endif + +#endif |