-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.cpp
executable file
·64 lines (55 loc) · 1.25 KB
/
client.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
56
57
58
59
60
61
62
63
64
#include "client.hpp"
#include "logger.hpp"
#include "util.hpp"
#include <cassert>
Client::Client(
const std::string &ip,
SOCKET sockHandle,
short port)
: NetworkNode(port, sockHandle)
{
ipToConnect = ip;
}
Client::Client(short port)
: NetworkNode(port, INVALID_SOCKET)
{
}
Client::~Client()
{
}
bool Client::connectTo()
{
const char *ipStr = ipToConnect.c_str();
if (ipStr == 0)
{
logger.log("Attempting to connect with null ip string.\n");
return false;
}
// Create the socket handle
socketHandle = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (socketHandle == INVALID_SOCKET)
{
return false;
}
ipAddress = inet_addr(ipStr);
struct sockaddr_in sa;
sa.sin_family = AF_INET;
sa.sin_addr.s_addr = ipAddress;
sa.sin_port = htons(portNumber);
// Attempt to connect
if (connect(socketHandle, reinterpret_cast<struct sockaddr *>(&sa), sizeof(sa)) == SOCKET_ERROR)
{
closesocket(socketHandle);
socketHandle = INVALID_SOCKET;
return false;
}
// Set socket to non-blocking
unsigned long val = 1;
if (ioctlsocket(socketHandle, FIONBIO, &val) == SOCKET_ERROR)
{
closesocket(socketHandle);
socketHandle = INVALID_SOCKET;
return false;
}
return true;
}