aboutsummaryrefslogtreecommitdiff
path: root/include/sibs/Socket.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-10-16 00:37:21 +0200
committerdec05eba <dec05eba@protonmail.com>2020-08-18 22:56:48 +0200
commitc47870421f189eb98fc66e912693d73fbd8477ee (patch)
tree036ead590fa17bef279de483489a880c54ef4ba1 /include/sibs/Socket.hpp
parent0c1b3db7c4d9a4bcde4160c437613b32cd4081d6 (diff)
Reuse peer connection if subscribed to same key
Diffstat (limited to 'include/sibs/Socket.hpp')
-rw-r--r--include/sibs/Socket.hpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/sibs/Socket.hpp b/include/sibs/Socket.hpp
new file mode 100644
index 0000000..0bc9ec3
--- /dev/null
+++ b/include/sibs/Socket.hpp
@@ -0,0 +1,19 @@
+#pragma once
+
+namespace sibs
+{
+ class Socket
+ {
+ public:
+ Socket();
+ Socket(int udtSocket);
+ Socket(int eid, int udtSocket);
+ Socket(Socket &&other);
+ Socket(const Socket&) = delete;
+ Socket& operator = (const Socket&) = delete;
+ ~Socket();
+
+ int eid;
+ int udtSocket;
+ };
+} \ No newline at end of file