TDME2 1.9.121
TCPSocket.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
10
11/**
12 * Class representing a TCP socket
13 * @author Andreas Drewke
14 */
16 public:
17 /**
18 * @brief Public destructor
19 */
20 virtual ~TCPSocket();
21
22 /**
23 * @brief Reads up to "bytes" bytes from socket
24 * @param buf buffer to write to
25 * @param bytes bytes to receive
26 * @throws tdme::os::network::NetworkIOException
27 * @return bytes read
28 */
29 size_t read(void* buf, const size_t bytes);
30
31 /**
32 * @brief Writes up to "bytes" bytes to socket
33 * @param buf buffer to read from
34 * @param bytes bytes to send
35 * @throws tdme::os::network::NetworkIOException
36 * @return bytes written
37 */
38 size_t write(void* buf, const size_t bytes);
39
40 /**
41 * @brief Creates a TCP socket
42 * @param socket socket
43 * @param ipVersion IP version
44 * @throws tdme::os::network::NetworkSocketException
45 */
46 static void create(TCPSocket& socket, IpVersion ipVersion);
47
48 /**
49 * Connects a socket to given IP and port
50 * @param ip ip
51 * @param port port
52 * @throws tdme::os::network::NetworkSocketException
53 */
54 void connect(const string& ip, const unsigned int port);
55
56 /**
57 * @brief Creates a TCP server socket
58 * @param socket socket
59 * @param ip ip
60 * @param port port
61 * @param backlog backlog
62 * @throws tdme::os::network::NetworkSocketException
63 * @return socket
64 */
65 static void createServerSocket(TCPSocket& socket, const std::string& ip, const unsigned int port, const int backlog);
66
67 /**
68 * @brief Disables nagle's algorithm
69 * @throws tdme::os::network::NetworkSocketException
70 */
71 void setTCPNoDelay();
72
73 /**
74 * @brief Accepts a socket from a server socket
75 * @param _socket socket
76 * @throws tdme::os::network::NetworkSocketException
77 * @return if socket was accepted
78 */
79 bool accept(TCPSocket& _socket);
80};
81
Base class of network sockets.
Definition: NetworkSocket.h:17
Class representing a TCP socket.
Definition: TCPSocket.h:15
size_t read(void *buf, const size_t bytes)
Reads up to "bytes" bytes from socket.
Definition: TCPSocket.cpp:46
size_t write(void *buf, const size_t bytes)
Writes up to "bytes" bytes to socket.
Definition: TCPSocket.cpp:60
bool accept(TCPSocket &_socket)
Accepts a socket from a server socket.
Definition: TCPSocket.cpp:182
virtual ~TCPSocket()
Public destructor.
Definition: TCPSocket.cpp:43
static void create(TCPSocket &socket, IpVersion ipVersion)
Creates a TCP socket.
Definition: TCPSocket.cpp:81
static void createServerSocket(TCPSocket &socket, const std::string &ip, const unsigned int port, const int backlog)
Creates a TCP server socket.
Definition: TCPSocket.cpp:146
void setTCPNoDelay()
Disables nagle's algorithm.
Definition: TCPSocket.cpp:169
void connect(const string &ip, const unsigned int port)
Connects a socket to given IP and port.
Definition: TCPSocket.cpp:99