summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2013-05-23 15:00:14 +0200
committerGravatar Martin Szulecki2013-05-23 15:00:14 +0200
commitb1c41365ef0dbf294b12b691d48d6988e578d66d (patch)
tree88daf9c8b6ef710f75db3d5330d5b8d8fc976a94 /include
parentabad8cbf298a09627eda4a53024907cef92aa01f (diff)
downloadlibimobiledevice-b1c41365ef0dbf294b12b691d48d6988e578d66d.tar.gz
libimobiledevice-b1c41365ef0dbf294b12b691d48d6988e578d66d.tar.bz2
syslog_relay: Remove syslog_relay_send() as the service is read-only
Diffstat (limited to 'include')
-rw-r--r--include/libimobiledevice/syslog_relay.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/libimobiledevice/syslog_relay.h b/include/libimobiledevice/syslog_relay.h
index 9152d79..7ccfd74 100644
--- a/include/libimobiledevice/syslog_relay.h
+++ b/include/libimobiledevice/syslog_relay.h
@@ -58,10 +58,7 @@ syslog_relay_error_t syslog_relay_client_free(syslog_relay_client_t client);
syslog_relay_error_t syslog_relay_start_capture(syslog_relay_client_t client, syslog_relay_receive_cb_t callback, void* user_data);
syslog_relay_error_t syslog_relay_stop_capture(syslog_relay_client_t client);
-/* sending */
-syslog_relay_error_t syslog_relay_send(syslog_relay_client_t client, const char *data, uint32_t size, uint32_t *sent);
-
-/* receiving */
+/* Receiving */
syslog_relay_error_t syslog_relay_receive_with_timeout(syslog_relay_client_t client, char *data, uint32_t size, uint32_t *received, unsigned int timeout);
syslog_relay_error_t syslog_relay_receive(syslog_relay_client_t client, char *data, uint32_t size, uint32_t *received);