]> git.sesse.net Git - cubemap/blobdiff - acceptor.h
Fix timeout behavior with persistent connections.
[cubemap] / acceptor.h
index f173e5b647e68d9c4d8cad2ac64e99b7c4523dd0..969ea65889419a38efd6683072be36bf60e9dc35 100644 (file)
@@ -1,10 +1,54 @@
 #ifndef _ACCEPTOR_H
 #define _ACCEPTOR_H
 
-int create_server_socket(int port);
+#include <netinet/in.h>
+
+#include <string>
+
+#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)