aboutsummaryrefslogtreecommitdiff
path: root/include/sibs/BootstrapNode.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/sibs/BootstrapNode.hpp')
-rw-r--r--include/sibs/BootstrapNode.hpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/include/sibs/BootstrapNode.hpp b/include/sibs/BootstrapNode.hpp
new file mode 100644
index 0000000..eaf48eb
--- /dev/null
+++ b/include/sibs/BootstrapNode.hpp
@@ -0,0 +1,28 @@
+#pragma once
+
+#include "DirectConnection.hpp"
+#include "IpAddress.hpp"
+
+namespace sibs
+{
+ class BootstrapException : public std::runtime_error
+ {
+ public:
+ BootstrapException(const std::string &errMsg) : std::runtime_error(errMsg) {}
+ };
+
+ class BootstrapNode
+ {
+ DISABLE_COPY(BootstrapNode)
+ public:
+ // Throws BootstrapException on error
+ BootstrapNode(const Ipv4 &address);
+ ~BootstrapNode();
+ private:
+ void acceptConnections();
+ private:
+ DirectConnections connections;
+ int socket;
+ std::thread acceptConnectionsThread;
+ };
+}