-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathswoole_proxy.h
89 lines (76 loc) · 2.87 KB
/
swoole_proxy.h
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
+----------------------------------------------------------------------+
| Swoole |
+----------------------------------------------------------------------+
| This source file is subject to version 2.0 of the Apache license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.apache.org/licenses/LICENSE-2.0.html |
| If you did not receive a copy of the Apache2.0 license and are unable|
| to obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Tianfeng Han <[email protected]> |
+----------------------------------------------------------------------+
*/
#pragma once
#include <string>
#include <cstdint>
#define SW_SOCKS5_VERSION_CODE 0x05
#define SW_HTTP_PROXY_CHECK_MESSAGE 0
#define SW_HTTP_PROXY_HANDSHAKE_RESPONSE "HTTP/1.1 200 Connection established\r\n"
#define SW_HTTP_PROXY_FMT \
"CONNECT %.*s:%d HTTP/1.1\r\n" \
"Host: %.*s:%d\r\n" \
"User-Agent: Swoole/" SWOOLE_VERSION "\r\n" \
"Proxy-Connection: Keep-Alive\r\n"
enum swHttpProxyState {
SW_HTTP_PROXY_STATE_WAIT = 0,
SW_HTTP_PROXY_STATE_HANDSHAKE,
SW_HTTP_PROXY_STATE_READY,
};
enum swSocks5State {
SW_SOCKS5_STATE_WAIT = 0,
SW_SOCKS5_STATE_HANDSHAKE,
SW_SOCKS5_STATE_AUTH,
SW_SOCKS5_STATE_CONNECT,
SW_SOCKS5_STATE_READY,
};
enum swSocks5Method {
SW_SOCKS5_METHOD_AUTH = 0x02,
};
namespace swoole {
class String;
struct HttpProxy {
uint8_t state;
uint8_t dont_handshake;
int proxy_port;
std::string proxy_host;
std::string username;
std::string password;
std::string target_host;
int target_port;
std::string get_auth_str();
size_t pack(String *send_buffer, const std::string *host_name);
bool handshake(String *recv_buffer);
};
struct Socks5Proxy {
std::string host;
int port;
uint8_t state;
uint8_t version;
uint8_t method;
uint8_t dns_tunnel;
std::string username;
std::string password;
std::string target_host;
int target_port;
char buf[600];
static const char *strerror(int code);
static void pack(char *buf, int method) {
buf[0] = SW_SOCKS5_VERSION_CODE;
buf[1] = 0x01;
buf[2] = method;
}
};
} // namespace swoole