19 #define BUF_CAST(buf) ((char*)buf)
24 #include <arpa/inet.h>
25 #include <netinet/tcp.h>
26 #include <netinet/in.h>
27 #include <sys/socket.h>
28 #define BUF_CAST(buf) ((void*)buf)
43TCPSocket::~TCPSocket() {
48 if (bytesRead == -1) {
49 std::string msg =
"error while reading from socket: ";
50 msg+= strerror(errno);
57 return (
size_t)bytesRead;
61 #if defined(__APPLE__) || defined(_WIN32)
66 if (bytesWritten == -1) {
67 if (errno == ECONNRESET || errno == EPIPE) {
68 std::string msg =
"end of stream: ";
69 msg+= strerror(errno);
72 std::string msg =
"error while writing to socket: ";
73 msg+= strerror(errno);
78 return (
size_t)bytesWritten;
85 std::string msg =
"Could not create socket: ";
86 msg+= strerror(errno);
89 #if defined(__APPLE__)
91 if (setsockopt(socket.
descriptor, SOL_SOCKET, SO_NOSIGPIPE, (
void*)&flag,
sizeof(flag)) == -1) {
92 std::string msg =
"Could not set no sig pipe on socket: ";
93 msg+= strerror(errno);
104 socklen_t sinLen = 0;
107 sockaddr_in6 sinIPV6;
111 sinLen =
sizeof(sinIPV4);
112 memset(&sinIPV4, 0, sinLen);
113 sinIPV4.sin_family = AF_INET;
114 sinIPV4.sin_port = htons(
port);
115 sinIPV4.sin_addr.s_addr = inet_addr(
ip.c_str());
121 sinLen =
sizeof(sinIPV6);
122 memset(&sinIPV6, 0, sinLen);
123 sinIPV6.sin6_family = AF_INET6;
124 sinIPV6.sin6_port = htons(
port);
125 inet_pton(AF_INET6,
ip.c_str(), &sinIPV6.sin6_addr);
133 std::string msg =
"Could not connect socket: ";
135 msg+= to_string(WSAGetLastError());
137 msg+= strerror(errno);
158 if (listen(socket.
descriptor, backlog) == -1) {
159 std::string msg =
"Could not set socket to listen: ";
160 msg+= strerror(errno);
172 if (setsockopt(
descriptor, IPPROTO_TCP, TCP_NODELAY, (
const char*)&flag,
sizeof(flag)) == -1) {
174 if (setsockopt(
descriptor, IPPROTO_TCP, TCP_NODELAY, (
void*)&flag,
sizeof(flag)) == -1) {
176 std::string msg =
"Could not set tcp no delay: ";
177 msg+= strerror(errno);
183 struct sockaddr_in _sin;
184 socklen_t _sinSize =
sizeof(_sin);
188 if (_descriptor == -1) {
190 if (errno == EAGAIN ||
191 errno == EWOULDBLOCK) {
194 std::string msg =
"Could not accept socket: ";
195 msg+= strerror(errno);
201 _socket.
ip = inet_ntoa(_sin.sin_addr);
202 _socket.
port = ntohs(_sin.sin_port);
Base exception class for network IO exceptions.
Network socket closed exception.
Base class of network sockets.
void bind(const string &ip, const unsigned int port)
Binds a socket to local ip and port.
void close()
Closes the socket.
static IpVersion determineIpVersion(const string &ip)
Determine IP version.
void setNonBlocked()
sets the socket non blocked
Class representing a TCP socket.
size_t read(void *buf, const size_t bytes)
Reads up to "bytes" bytes from socket.
size_t write(void *buf, const size_t bytes)
Writes up to "bytes" bytes to socket.
bool accept(TCPSocket &_socket)
Accepts a socket from a server socket.
static void create(TCPSocket &socket, IpVersion ipVersion)
Creates a TCP socket.
static void createServerSocket(TCPSocket &socket, const std::string &ip, const unsigned int port, const int backlog)
Creates a TCP server socket.
void setTCPNoDelay()
Disables nagle's algorithm.
void connect(const string &ip, const unsigned int port)
Connects a socket to given IP and port.