]> git.sesse.net Git - cubemap/blobdiff - httpinput.h
Support UDP packets larger than 4 kB.
[cubemap] / httpinput.h
index 1714b71a8984ddf7a723dccae4ef2b133de6a1b5..fc39b30f7c14f5ca701fce33d48e89dcd7a7ccc4 100644 (file)
@@ -1,8 +1,9 @@
 #ifndef _HTTPINPUT_H
 #define _HTTPINPUT_H 1
 
-#include <vector>
+#include <stddef.h>
 #include <string>
+#include <vector>
 
 #include "input.h"
 
@@ -10,7 +11,7 @@ class InputProto;
 
 class HTTPInput : public Input {
 public:
-       HTTPInput(const std::string &stream_id, const std::string &url);
+       HTTPInput(const std::string &url);
 
        // Serialization/deserialization.
        HTTPInput(const InputProto &serialized);
@@ -20,6 +21,11 @@ public:
 
        virtual std::string get_url() const { return url; }
 
+       virtual void add_destination(int stream_index)
+       {
+               stream_indices.push_back(stream_index);
+       }
+
 private:
        // Actually does the download.
        virtual void do_work();
@@ -47,7 +53,7 @@ private:
        };
        State state;
 
-       std::string stream_id;
+       std::vector<int> stream_indices;
 
        // The URL and its parsed components.
        std::string url;