X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=acceptor.h;h=969ea65889419a38efd6683072be36bf60e9dc35;hp=f173e5b647e68d9c4d8cad2ac64e99b7c4523dd0;hb=f2e7dbf218365e3f47b942ea999796b2724ccc24;hpb=3f82e5f8ede16a712aa0bcd0913d2d8e3689742c diff --git a/acceptor.h b/acceptor.h index f173e5b..969ea65 100644 --- a/acceptor.h +++ b/acceptor.h @@ -1,10 +1,54 @@ #ifndef _ACCEPTOR_H #define _ACCEPTOR_H -int create_server_socket(int port); +#include + +#include + +#include "thread.h" + +enum SocketType { + TCP_SOCKET, + UDP_SOCKET, +}; +int create_server_socket(const sockaddr_in6 &addr, SocketType socket_type); + +class AcceptorProto; + +sockaddr_in6 create_any_address(int port); +sockaddr_in6 extract_address_from_acceptor_proto(const AcceptorProto &proto); // A thread that accepts new connections on a given socket, // and hands them off to the server pool. -void *acceptor_thread_run(void *arg); +class Acceptor : public Thread { +public: + Acceptor(int server_sock, const sockaddr_in6 &addr, + const std::string &certificate_chain, const std::string &private_key); + + // Serialization/deserialization. + Acceptor(const AcceptorProto &serialized); + AcceptorProto serialize() const; + + bool is_tls() const { return !certificate_chain.empty(); } + + std::string get_certificate_chain() const { + assert(is_tls()); + return certificate_chain; + } + + std::string get_private_key() const { + assert(is_tls()); + return private_key; + } + + void close_socket(); + +private: + virtual void do_work(); + + int server_sock; + sockaddr_in6 addr; + std::string certificate_chain, private_key; // Both empty for no TLS. +}; #endif // !defined(_ACCEPTOR_H)