diff options
author | Nikias Bassen | 2013-02-28 02:57:57 +0100 |
---|---|---|
committer | Nikias Bassen | 2013-02-28 02:57:57 +0100 |
commit | 76ce1e8910a56c456e49d12fa980adc3488e1883 (patch) | |
tree | d6ee0db846fa2c4347785534a07c8d61cb8a15bc | |
parent | 5a5323f9c20a75460fa2c9df17f372bcf06ff9e7 (diff) | |
download | libimobiledevice-76ce1e8910a56c456e49d12fa980adc3488e1883.tar.gz libimobiledevice-76ce1e8910a56c456e49d12fa980adc3488e1883.tar.bz2 |
idevicesyslog: use new service API
-rw-r--r-- | tools/idevicesyslog.c | 50 |
1 files changed, 17 insertions, 33 deletions
diff --git a/tools/idevicesyslog.c b/tools/idevicesyslog.c index 6ce6d0e..44c8246 100644 --- a/tools/idevicesyslog.c +++ b/tools/idevicesyslog.c @@ -28,6 +28,7 @@ #include <libimobiledevice/libimobiledevice.h> #include <libimobiledevice/lockdown.h> #include <endianness.h> +#include "../src/service.h" static int quit_flag = 0; @@ -44,12 +45,10 @@ static void clean_exit(int sig) int main(int argc, char *argv[]) { - lockdownd_client_t client = NULL; idevice_t device = NULL; idevice_error_t ret = IDEVICE_E_UNKNOWN_ERROR; int i; const char* udid = NULL; - lockdownd_service_descriptor_t service = NULL; signal(SIGINT, clean_exit); signal(SIGTERM, clean_exit); @@ -93,42 +92,27 @@ int main(int argc, char *argv[]) return -1; } - if (LOCKDOWN_E_SUCCESS != lockdownd_client_new_with_handshake(device, &client, "idevicesyslog")) { - idevice_free(device); - return -1; - } - - /* start syslog_relay service and retrieve port */ - ret = lockdownd_start_service(client, "com.apple.syslog_relay", &service); - if ((ret == LOCKDOWN_E_SUCCESS) && service->port) { - lockdownd_client_free(client); - - /* connect to socket relay messages */ - idevice_connection_t conn = NULL; - if ((idevice_connect(device, service->port, &conn) != IDEVICE_E_SUCCESS) || !conn) { - printf("ERROR: Could not open usbmux connection.\n"); - } else { - while (!quit_flag) { - char c; - uint32_t bytes = 0; - if (idevice_connection_receive(conn, &c, 1, &bytes) < 0) { - fprintf(stderr, "Error receiving data. Exiting...\n"); - break; - } - if (c != 0) { - putchar(c); - fflush(stdout); - } + service_error_t serr = SERVICE_E_UNKNOWN_ERROR; + service_client_t syslog = NULL; + + service_client_factory_start_service(device, "com.apple.syslog_relay", (void**)&syslog, "idevicesyslog", NULL, &serr); + if (serr == SERVICE_E_SUCCESS) { + while (!quit_flag) { + char c; + uint32_t bytes = 0; + if (service_receive(syslog, &c, 1, &bytes) != SERVICE_E_SUCCESS) { + fprintf(stderr, "Error receiving data. Exiting...\n"); + break; + } + if (c != 0) { + putchar(c); + fflush(stdout); } } - idevice_disconnect(conn); + service_client_free(syslog); } else { printf("ERROR: Could not start service com.apple.syslog_relay.\n"); } - - if (service) - lockdownd_service_descriptor_free(service); - idevice_free(device); return 0; |