1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

http streaming support flv start index.

This commit is contained in:
winlin 2014-05-26 13:57:08 +08:00
parent 9360b4618a
commit b13bd70c86
11 changed files with 413 additions and 20 deletions

View file

@ -358,6 +358,13 @@ public:
virtual void set_match(SrsHttpHandlerMatch* match);
virtual void set_requires_crossdomain(bool requires_crossdomain);
virtual void append_body(const char* body, int length);
public:
/**
* get the param in query string,
* for instance, query is "start=100&end=200",
* then query_get("start") is "100", and query_get("end") is "200"
*/
virtual std::string query_get(std::string key);
public:
virtual int request_header_count();
virtual std::string request_header_key_at(int index);