summaryrefslogtreecommitdiff
path: root/libavformat/http.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2012-06-01 16:36:20 +0300
committerMartin Storsjö <martin@martin.st>2012-06-01 18:38:31 +0300
commitdbaf79c9d7270eafd2479d9c650efa1433d65efd (patch)
tree841a20977f5c3d76e415d991b38c24c4ca716f77 /libavformat/http.c
parent5952564185ecb8495bac0c8ea74e1452da6429ce (diff)
http: Add the url_shutdown function for https, too
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/http.c')
-rw-r--r--libavformat/http.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/http.c b/libavformat/http.c
index 6c6ff5cf81..b2f2ea97f2 100644
--- a/libavformat/http.c
+++ b/libavformat/http.c
@@ -669,6 +669,7 @@ URLProtocol ff_https_protocol = {
.url_seek = http_seek,
.url_close = http_close,
.url_get_file_handle = http_get_file_handle,
+ .url_shutdown = http_shutdown,
.priv_data_size = sizeof(HTTPContext),
.priv_data_class = &https_context_class,
.flags = URL_PROTOCOL_FLAG_NETWORK,