blob: 4403e8328bf44ad7c1b4126054364b3d2ed1baec (
plain)
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
|
#pragma once
#include <stdexcept>
#include <string>
#include <unordered_map>
#ifndef WIN32
#include <arpa/inet.h>
#include <netdb.h>
#else
#include <winsock2.h>
#include <ws2tcpip.h>
#endif
namespace sibs
{
class InvalidAddressException : public std::runtime_error
{
public:
InvalidAddressException(const std::string &errMsg) : std::runtime_error(errMsg) {}
};
class Ipv4
{
public:
Ipv4();
// If @ip is nullptr, then bind to all available sockets (typical for servers)
// Throws InvalidAddressException on error.
Ipv4(const char *ip, unsigned short port);
Ipv4(const Ipv4 &other);
Ipv4& operator = (const Ipv4 &other);
std::string getAddress() const;
unsigned short getPort() const;
bool operator == (const Ipv4 &other) const;
bool operator != (const Ipv4 &other) const;
struct sockaddr_in address;
};
struct Ipv4Hasher
{
size_t operator()(const Ipv4 &address) const
{
return address.address.sin_addr.s_addr ^ address.address.sin_port;
}
};
template <typename ValueType>
using Ipv4Map = std::unordered_map<Ipv4, ValueType, Ipv4Hasher>;
}
|