aboutsummaryrefslogtreecommitdiff
path: root/comp3331/server/src/client/client.hh
diff options
context:
space:
mode:
authorNicolas James <Eele1Ephe7uZahRie@tutanota.com>2025-02-13 18:00:17 +1100
committerNicolas James <Eele1Ephe7uZahRie@tutanota.com>2025-02-13 18:00:17 +1100
commit98cef5e9a772602d42acfcf233838c760424db9a (patch)
tree5277fa1d7cc0a69a0f166fcbf10fd320f345f049 /comp3331/server/src/client/client.hh
initial commit
Diffstat (limited to 'comp3331/server/src/client/client.hh')
-rw-r--r--comp3331/server/src/client/client.hh24
1 files changed, 24 insertions, 0 deletions
diff --git a/comp3331/server/src/client/client.hh b/comp3331/server/src/client/client.hh
new file mode 100644
index 0000000..8230e46
--- /dev/null
+++ b/comp3331/server/src/client/client.hh
@@ -0,0 +1,24 @@
+#ifndef CLIENT_CLIENT_HH_
+#define CLIENT_CLIENT_HH_
+
+#include <algorithm>
+#include <arpa/inet.h>
+#include <chrono>
+#include <fstream>
+#include <iostream>
+#include <sstream>
+#include <string>
+#include <thread>
+#include <unordered_map>
+#include <utility>
+#include <vector>
+
+#include "shared/connection.hh"
+#include "shared/net.hh"
+#include "shared/shared.hh"
+
+namespace client {
+void do_client(const char* const address, const char* const port);
+}
+
+#endif