X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=input.h;h=1cea2f541f31aabe027f4b4ce41f5ef20cf64c14;hp=a00113da80250100fa7917d0ec5c62d8c93fdf2f;hb=70c47a998c5aa2eb536c3c8f71f3178cd217a14d;hpb=b3cabe9eb67ad22e671cc47408641b4a24a1af0a diff --git a/input.h b/input.h index a00113d..1cea2f5 100644 --- a/input.h +++ b/input.h @@ -1,6 +1,8 @@ #ifndef _INPUT_H #define _INPUT_H 1 +#include +#include #include #include "thread.h" @@ -9,7 +11,7 @@ class Input; class InputProto; // Extremely rudimentary URL parsing. -bool parse_url(const std::string &url, std::string *protocol, std::string *host, std::string *port, std::string *path); +bool parse_url(const std::string &url, std::string *protocol, std::string *user, std::string *host, std::string *port, std::string *path); // Figure out the right type of input based on the URL, and create a new Input of the right type. // Will return NULL if unknown.