aboutsummaryrefslogtreecommitdiff
path: root/client/sock.h
diff options
context:
space:
mode:
Diffstat (limited to 'client/sock.h')
-rw-r--r--client/sock.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/client/sock.h b/client/sock.h
new file mode 100644
index 0000000..e3d7ec8
--- /dev/null
+++ b/client/sock.h
@@ -0,0 +1,21 @@
+#pragma once
+
+#include <cstdint>
+#include <thread>
+
+class PBSocket {
+public:
+ PBSocket(char* addr, uint16_t port);
+
+ void connect(char* addr, uint16_t port);
+
+private:
+ PBSocket();
+
+ void sock_task();
+
+ std::thread _thread;
+
+};
+
+