X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=udpinput.h;h=e41266e0dc3340a151d1a1a44a45748dcc628f1a;hb=9abb89bcf7940e2ada9d708f86a218a56334f68d;hp=dc91bc2bfd6d3c5befbee6df37635c435b113786;hpb=340489a8e732519182ecbc92116e7dfa2997143c;p=cubemap diff --git a/udpinput.h b/udpinput.h index dc91bc2..e41266e 100644 --- a/udpinput.h +++ b/udpinput.h @@ -19,10 +19,7 @@ public: virtual std::string get_url() const { return url; } virtual void close_socket(); - virtual void add_destination(const std::string &stream_id) - { - stream_ids.push_back(stream_id); - } + virtual void add_destination(int stream_index); private: // Actually gets the packets. @@ -31,12 +28,15 @@ private: // Create the HTTP header. void construct_header(); - std::vector stream_ids; + std::vector stream_indices; // The URL and its parsed components. std::string url; std::string host, port, path; + // The HTTP header we're sending to clients. + std::string http_header; + // The socket we are receiving on (or -1). int sock; };