blob: 8230e46ba08d35a4d85bda39c6726856dcdf95d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
|