diff options
author | Jonathan Beck | 2008-08-19 23:58:20 +0200 |
---|---|---|
committer | Jonathan Beck | 2008-08-31 19:27:20 +0200 |
commit | ad65cefa1c041bbd4792e3dc4f4afc7b07026930 (patch) | |
tree | 76c73d5372cc7152ec20fb809b6da71f3dd896df /src/usbmux.h | |
parent | 21d5d4ac4b4bd419e0d8752147464984497c98ec (diff) | |
download | libplist-ad65cefa1c041bbd4792e3dc4f4afc7b07026930.tar.gz libplist-ad65cefa1c041bbd4792e3dc4f4afc7b07026930.tar.bz2 |
migrate usbmux.c.
Diffstat (limited to 'src/usbmux.h')
-rw-r--r-- | src/usbmux.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/usbmux.h b/src/usbmux.h index 831f0fd..da8a361 100644 --- a/src/usbmux.h +++ b/src/usbmux.h @@ -43,12 +43,12 @@ typedef struct { uint16 window, nullnull, length16; } usbmux_tcp_header; -typedef struct { +struct iphone_umux_client_int { usbmux_tcp_header *header; iphone_device_t phone; char *recv_buffer; int r_len; -} usbmux_connection; +}; usbmux_tcp_header *new_mux_packet(uint16 s_port, uint16 d_port); @@ -58,10 +58,5 @@ typedef struct { usbmux_version_header *version_header(); -usbmux_connection *mux_connect(iphone_device_t phone, uint16 s_port, uint16 d_port); -void mux_close_connection(usbmux_connection *connection); -int mux_send(usbmux_connection *connection, const char *data, uint32 datalen); -int mux_recv(usbmux_connection *connection, char *data, uint32 datalen); - #endif |