sockscape/server/src/main.cpp

33 lines
752 B
C++
Raw Normal View History

2018-02-14 01:16:58 +00:00
#include <iostream>
2018-02-28 23:07:39 +00:00
#include <string>
2018-03-23 21:31:13 +00:00
#include <ctime>
2018-02-15 23:09:09 +00:00
#include "sock/tcpsock.hpp"
2018-02-28 23:07:39 +00:00
#include "utils/string.hpp"
2018-03-01 23:16:47 +00:00
#include "utils/net.hpp"
2018-03-05 23:23:07 +00:00
#include "utils/time.hpp"
2018-03-07 23:07:28 +00:00
#include "sock/tcpsock.hpp"
2018-03-15 04:01:24 +00:00
#include "crypto/sha1.hpp"
2018-03-15 22:02:10 +00:00
#include "crypto/base64.hpp"
2018-03-20 22:42:26 +00:00
#include "crypto/bfish.hpp"
#include "utils/csprng.hpp"
2018-03-21 04:29:24 +00:00
#include "crypto/bcrypt.hpp"
2018-03-21 22:07:30 +00:00
#include "utils/bigint.hpp"
2018-02-14 01:16:58 +00:00
int main(int argc, char **argv) {
2018-03-29 22:10:39 +00:00
sosc::TcpServer server;
sosc::TcpClient client;
std::string buffer;
server.Listen(8080);
std::cout << "Listening ..." << std::endl;
server.Accept(&client);
std::cout << "Reading ..." << std::endl;
while(true) {
client.Receive(&buffer, SOSC_TCP_BLOCK);
std::cout << buffer;
}
2018-03-20 22:42:26 +00:00
2018-02-14 01:16:58 +00:00
return 0;
}