trick/trick_sims/SIM_pool/models/graphics/cpp/Socket.hh

26 lines
447 B
C++
Raw Normal View History

2022-07-14 16:05:56 +00:00
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <string>
#include <iostream>
class Socket {
public:
Socket (std::string hostname, int port);
int send (std::string message);
int operator<< (std::string message);
std::string receive ();
void operator>> (std::string& ret);
private:
int port;
std::string hostname;
int socket_fd;
};