TDME2 1.9.121
NetworkSocket.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
8
9using std::string;
10
12
13/**
14 * Base class of network sockets
15 * @author Andreas Drewke
16 */
19
20public:
22
23 /**
24 * @brief copy operator
25 */
27
28 /**
29 * Protected constructor
30 */
32
33 /**
34 * @brief public destructor
35 */
36 virtual ~NetworkSocket();
37
38 /**
39 * @brief returns the end points ip address
40 * @return end point ip address
41 */
42 const string& getAddress();
43
44 /**
45 * @brief returns the end points port
46 * @return end point port
47 */
48 const unsigned int getPort();
49
50 /**
51 * @brief shuts socket down for reading and writing
52 */
53 void shutdown();
54
55 /**
56 * Binds a socket to local ip and port
57 * @param ip ip
58 * @param port port
59 * @throws tdme::os::network::NetworkSocketException
60 */
61 void bind(const string& ip, const unsigned int port);
62
63 /**
64 * @brief sets the socket non blocked
65 * @throws tdme::os::network::NetworkSocketException
66 */
67 void setNonBlocked();
68
69 /**
70 * Closes the socket
71 */
72 void close();
73
74 /**
75 * Determine IP version
76 * @param ip ip
77 * @returns ip version
78 */
79 static IpVersion determineIpVersion(const string& ip);
80
81protected:
84 string ip;
85 unsigned int port;
86};
87
88// MINGW: Have some missing posix functions
89#if defined(__MINGW32__) && !defined(__MINGW64__)
90 // TODO: move those somewhere else as they are not only socket specific
91 #define inet_pton inet_pton6
92 #define inet_ntop inet_ntop6
93 size_t strlcpy(char* __restrict dst, const char* __restrict src, size_t siz);
94 int inet_pton4(const char* src, void* dst);
95 int inet_pton6(int af, const char* src, void* dst);
96 char* inet_ntop4(const void* src, char* dst, size_t size);
97 char* inet_ntop6(int af, const void* src, char* dst, size_t size);
98#endif
Interface to kernel event mechanismns.
Base class of network sockets.
Definition: NetworkSocket.h:17
NetworkSocket & operator=(NetworkSocket &socket)
copy operator
void bind(const string &ip, const unsigned int port)
Binds a socket to local ip and port.
void close()
Closes the socket.
void shutdown()
shuts socket down for reading and writing
static IpVersion determineIpVersion(const string &ip)
Determine IP version.
const string & getAddress()
returns the end points ip address
void setNonBlocked()
sets the socket non blocked
const unsigned int getPort()
returns the end points port
virtual ~NetworkSocket()
public destructor
NetworkSocket()
Protected constructor.