diff options
| author | 2008-07-29 01:11:02 -0700 | |
|---|---|---|
| committer | 2008-07-29 01:11:02 -0700 | |
| commit | e2ff1128351d75eafd5426af7f96f9719c1af3e6 (patch) | |
| tree | c1c460b4de78cd5645d6d12e83d2646f56f30363 /usbmux.h | |
| download | libimobiledevice-e2ff1128351d75eafd5426af7f96f9719c1af3e6.tar.gz libimobiledevice-e2ff1128351d75eafd5426af7f96f9719c1af3e6.tar.bz2 | |
First released version, 0.089.
Diffstat (limited to 'usbmux.h')
| -rw-r--r-- | usbmux.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/usbmux.h b/usbmux.h new file mode 100644 index 0000000..921f4b7 --- /dev/null +++ b/usbmux.h | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | |||
| 2 | #include <sys/types.h> | ||
| 3 | #include <stdlib.h> | ||
| 4 | #include <stdint.h> | ||
| 5 | |||
| 6 | |||
| 7 | #ifndef USBMUX_H | ||
| 8 | #define USBMUX_H | ||
| 9 | |||
| 10 | #ifndef IPHONE_H | ||
| 11 | #include "iphone.h" | ||
| 12 | #endif | ||
| 13 | |||
| 14 | typedef uint16_t uint16; | ||
| 15 | typedef uint32_t uint32; | ||
| 16 | typedef uint8_t uint8; | ||
| 17 | |||
| 18 | |||
| 19 | typedef struct { | ||
| 20 | uint32 type, length; | ||
| 21 | uint16 sport, dport; | ||
| 22 | uint32 scnt, ocnt; | ||
| 23 | uint8 offset, tcp_flags; | ||
| 24 | uint16 window, nullnull, length16; | ||
| 25 | } usbmux_tcp_header; | ||
| 26 | |||
| 27 | usbmux_tcp_header *new_mux_packet(uint16 s_port, uint16 d_port); | ||
| 28 | |||
| 29 | typedef struct { | ||
| 30 | uint32 type, length, major, minor, allnull; | ||
| 31 | } usbmux_version_header; | ||
| 32 | |||
| 33 | usbmux_version_header *version_header(); | ||
| 34 | |||
| 35 | usbmux_tcp_header *mux_connect(iPhone *phone, uint16 s_port, uint16 d_port); | ||
| 36 | void mux_close_connection(iPhone *phone, usbmux_tcp_header *connection); | ||
| 37 | int mux_send(iPhone *phone, usbmux_tcp_header *connection, char *data, uint32 datalen); | ||
| 38 | int mux_recv(iPhone *phone, usbmux_tcp_header *connection, char *data, uint32 datalen); | ||
| 39 | #endif | ||
