17 lines
315 B
C++
17 lines
315 B
C++
#include <iostream>
|
|
|
|
#include "../lib/tcp_socket.hpp"
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
|
|
secure crypto;
|
|
client myserver("localhost", 5000, 500, crypto.fds);
|
|
string sends = "Hello world!";
|
|
cout << myserver.tell(sends) << " " << sends.length() << endl;
|
|
cout << myserver.obey();
|
|
|
|
|
|
return 0;
|
|
} |