Simple TCP socket library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
socket/test/server.cpp

27 lines
660 B

1 year ago
#include <iostream>
#include "../lib/tcp_socket.hpp"
using namespace std;
int main() {
server myserver(5000, 10);
comming myclient(&myserver, 1000);
string fromclient = myclient.obey();
myclient.tell(fromclient);
myclient.~comming();
while (true) {
comming myclient(&myserver, 1000);
string fromclient = myclient.obey();
cout << fromclient << " " << myclient.conn << endl;
cout << "Poslano: " << myclient.tell(fromclient) << "Veličin: " << fromclient.length() << endl;
// myclient.~comming();
cout << "IPv4 " << myclient.ipv4 << " ipv6 " << myclient.ipv6;
}
return 0;
}