Files
MP-SPDZ/Networking/ServerSocket.h
2020-04-02 09:09:45 +02:00

76 lines
1.5 KiB
C++

/*
* ServerSocket.h
*
*/
#ifndef NETWORKING_SERVERSOCKET_H_
#define NETWORKING_SERVERSOCKET_H_
#include <map>
#include <set>
#include <queue>
using namespace std;
#include <pthread.h>
#include <netinet/tcp.h>
#include "Tools/WaitQueue.h"
#include "Tools/Signal.h"
class ServerJob;
class ServerSocket
{
protected:
int main_socket, portnum;
map<int,int> clients;
std::set<int> used;
Signal data_signal;
pthread_t thread;
vector<ServerJob*> jobs;
// disable copying
ServerSocket(const ServerSocket& other);
void process_connection(int socket, int client_id);
virtual void process_client(int) {}
public:
ServerSocket(int Portnum);
virtual ~ServerSocket();
virtual void init();
virtual void accept_clients();
void wait_for_client_id(int socket, sockaddr dest);
// This depends on clients sending their id as int.
// Has to be thread-safe.
int get_connection_socket(int number);
};
/*
* ServerSocket where clients do not send any identifiers upon connecting.
*/
class AnonymousServerSocket : public ServerSocket
{
private:
// No. of accepted connections in this instance
queue<int> client_connection_queue;
void process_client(int client_id);
public:
AnonymousServerSocket(int Portnum) :
ServerSocket(Portnum) { };
void init();
// Get socket and id for the last client who connected
int get_connection_socket(int& client_id);
};
#endif /* NETWORKING_SERVERSOCKET_H_ */