aboutsummaryrefslogtreecommitdiff
path: root/include/sibs/IpAddress.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/sibs/IpAddress.hpp')
-rw-r--r--include/sibs/IpAddress.hpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/include/sibs/IpAddress.hpp b/include/sibs/IpAddress.hpp
new file mode 100644
index 0000000..a0fad75
--- /dev/null
+++ b/include/sibs/IpAddress.hpp
@@ -0,0 +1,35 @@
+#pragma once
+
+#include "../utils.hpp"
+#include <stdexcept>
+#include <string>
+#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
+ {
+ DISABLE_COPY(Ipv4)
+ public:
+ // If @ip is nullptr, then bind to all available sockets (typical for servers)
+ // Throws InvalidAddressException on error.
+ Ipv4(const char *ip, unsigned short port);
+
+ std::string getAddress() const;
+ unsigned short getPort() const;
+
+ struct sockaddr_in address;
+ };
+}