mirror of https://git.ffmpeg.org/ffmpeg.git
http: Provide an option to override the HTTP method
Certain servers accept only PUT as valid method.
This commit is contained in:
parent
bb0babd705
commit
28df1d2411
|
@ -85,6 +85,7 @@ typedef struct {
|
||||||
#endif
|
#endif
|
||||||
AVDictionary *chained_options;
|
AVDictionary *chained_options;
|
||||||
int send_expect_100;
|
int send_expect_100;
|
||||||
|
char *method;
|
||||||
} HTTPContext;
|
} HTTPContext;
|
||||||
|
|
||||||
#define OFFSET(x) offsetof(HTTPContext, x)
|
#define OFFSET(x) offsetof(HTTPContext, x)
|
||||||
|
@ -110,6 +111,7 @@ static const AVOption options[] = {
|
||||||
{"location", "The actual location of the data received", OFFSET(location), AV_OPT_TYPE_STRING, { 0 }, 0, 0, D|E },
|
{"location", "The actual location of the data received", OFFSET(location), AV_OPT_TYPE_STRING, { 0 }, 0, 0, D|E },
|
||||||
{"offset", "initial byte offset", OFFSET(off), AV_OPT_TYPE_INT64, {.i64 = 0}, 0, INT64_MAX, D },
|
{"offset", "initial byte offset", OFFSET(off), AV_OPT_TYPE_INT64, {.i64 = 0}, 0, INT64_MAX, D },
|
||||||
{"end_offset", "try to limit the request to bytes preceding this offset", OFFSET(end_off), AV_OPT_TYPE_INT64, {.i64 = 0}, 0, INT64_MAX, D },
|
{"end_offset", "try to limit the request to bytes preceding this offset", OFFSET(end_off), AV_OPT_TYPE_INT64, {.i64 = 0}, 0, INT64_MAX, D },
|
||||||
|
{"method", "Override the HTTP method", OFFSET(method), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E, },
|
||||||
{NULL}
|
{NULL}
|
||||||
};
|
};
|
||||||
#define HTTP_CLASS(flavor)\
|
#define HTTP_CLASS(flavor)\
|
||||||
|
@ -555,7 +557,11 @@ static int http_connect(URLContext *h, const char *path, const char *local_path,
|
||||||
s->chunked_post = 0;
|
s->chunked_post = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
method = post ? "POST" : "GET";
|
if (s->method)
|
||||||
|
method = s->method;
|
||||||
|
else
|
||||||
|
method = post ? "POST" : "GET";
|
||||||
|
|
||||||
authstr = ff_http_auth_create_response(&s->auth_state, auth, local_path,
|
authstr = ff_http_auth_create_response(&s->auth_state, auth, local_path,
|
||||||
method);
|
method);
|
||||||
proxyauthstr = ff_http_auth_create_response(&s->proxy_auth_state, proxyauth,
|
proxyauthstr = ff_http_auth_create_response(&s->proxy_auth_state, proxyauth,
|
||||||
|
|
Loading…
Reference in New Issue