]> git.sesse.net Git - cubemap/blobdiff - serverpool.h
Keep information about HLS downloads around for some time afterwards.
[cubemap] / serverpool.h
index a70d5429221af06f82049e8c098d93e52c33cbc9..9cac26e47133f270e91c040afa3091420433f387 100644 (file)
@@ -29,6 +29,9 @@ public:
        void add_client(int sock, Acceptor *acceptor);
        void add_client_from_serialized(const ClientProto &client, const std::vector<std::shared_ptr<const std::string>> &short_responses);
 
+       // Picks a srever (round-robin) and adds the given HLS zombie to it.
+       void add_hls_zombie_from_serialized(const HLSZombieProto &client);
+
        // Adds the given stream to all the servers. Returns the stream index.
        int add_stream(const std::string &url,
                       const std::string &hls_url,
@@ -95,6 +98,7 @@ public:
        void stop();
 
        std::vector<ClientStats> get_client_stats() const;
+       std::vector<HLSZombie> get_hls_zombies() const;
 
 private:
        std::unique_ptr<Server[]> servers;