1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
/*
* usbmux.h
* Defines structures and variables pertaining to the usb multiplexing.
*
* Copyright (c) 2008 Zack C. All Rights Reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <sys/types.h>
#include <stdlib.h>
#include <stdint.h>
#ifndef USBMUX_H
#define USBMUX_H
#ifndef IPHONE_H
#include "iphone.h"
#endif
typedef uint16_t uint16;
typedef uint32_t uint32;
typedef uint8_t uint8;
typedef struct {
uint32 type, length;
uint16 sport, dport;
uint32 scnt, ocnt;
uint8 offset, tcp_flags;
uint16 window, nullnull, length16;
} usbmux_tcp_header;
usbmux_tcp_header *new_mux_packet(uint16 s_port, uint16 d_port);
typedef struct {
uint32 type, length, major, minor, allnull;
} usbmux_version_header;
usbmux_version_header *version_header();
usbmux_tcp_header *mux_connect(iPhone *phone, uint16 s_port, uint16 d_port);
void mux_close_connection(iPhone *phone, usbmux_tcp_header *connection);
int mux_send(iPhone *phone, usbmux_tcp_header *connection, char *data, uint32 datalen);
int mux_recv(iPhone *phone, usbmux_tcp_header *connection, char *data, uint32 datalen);
#endif
|