-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathTcpClient.cpp
55 lines (44 loc) · 1.11 KB
/
TcpClient.cpp
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
#include "TcpClient.h"
#include "XLog.h"
#include "EventLoop.h"
TcpClient::TcpClient(EventLoop * loop) :
mLoop(loop->getLoop())
{
}
TcpClient::~TcpClient()
{
}
int TcpClient::connect(const char * ip, int port, bool ipv6, int argv)
{
struct user_connect : public uv_connect_t
{
TcpSocket * conn;
int argv;
};
user_connect * user_conn = new user_connect;
user_conn->conn = createSocket();
user_conn->data = this;
user_conn->argv = argv;
uv_tcp_init(mLoop, user_conn->conn->getUvTcp());
sockaddr_storage iaddr;
if (ipv6) {
uv_ip6_addr(ip, port, (sockaddr_in6*)&iaddr);
}
else {
uv_ip4_addr(ip, port, (sockaddr_in*)&iaddr);
}
return uv_tcp_connect(user_conn, user_conn->conn->getUvTcp(), (sockaddr*)&iaddr,
[](uv_connect_t* req, int status) {
user_connect *user_conn = (user_connect*)req;
TcpClient * self = (TcpClient *)user_conn->data;
if (status < 0) {
uv_close((uv_handle_t*)(user_conn->conn->getUvTcp()), NULL);
self->onSocket(NULL, user_conn->argv);
}
else {
user_conn->conn->on_read_start();
self->onSocket(user_conn->conn, user_conn->argv);
}
delete user_conn;
});
}