]> git.sesse.net Git - ffmpeg/blob - libavformat/http.c
mpegts: remove unused variable
[ffmpeg] / libavformat / http.c
1 /*
2  * HTTP protocol for ffmpeg client
3  * Copyright (c) 2000, 2001 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "libavutil/avstring.h"
23 #include "avformat.h"
24 #include <unistd.h>
25 #include "internal.h"
26 #include "network.h"
27 #include "http.h"
28 #include "os_support.h"
29 #include "httpauth.h"
30 #include "url.h"
31 #include "libavutil/opt.h"
32
33 /* XXX: POST protocol is not completely implemented because ffmpeg uses
34    only a subset of it. */
35
36 /* used for protocol handling */
37 #define BUFFER_SIZE 1024
38 #define MAX_REDIRECTS 8
39
40 typedef struct {
41     const AVClass *class;
42     URLContext *hd;
43     unsigned char buffer[BUFFER_SIZE], *buf_ptr, *buf_end;
44     int line_count;
45     int http_code;
46     int64_t chunksize;      /**< Used if "Transfer-Encoding: chunked" otherwise -1. */
47     char *user_agent;
48     int64_t off, filesize;
49     char location[MAX_URL_SIZE];
50     HTTPAuthState auth_state;
51     HTTPAuthState proxy_auth_state;
52     char *headers;
53     int willclose;          /**< Set if the server correctly handles Connection: close and will close the connection after feeding us the content. */
54     int chunked_post;
55 } HTTPContext;
56
57 #define OFFSET(x) offsetof(HTTPContext, x)
58 #define D AV_OPT_FLAG_DECODING_PARAM
59 #define E AV_OPT_FLAG_ENCODING_PARAM
60 #define DEC AV_OPT_FLAG_DECODING_PARAM
61 static const AVOption options[] = {
62 {"chunked_post", "use chunked transfer-encoding for posts", OFFSET(chunked_post), AV_OPT_TYPE_INT, {.dbl = 1}, 0, 1, E },
63 {"headers", "custom HTTP headers, can override built in default headers", OFFSET(headers), AV_OPT_TYPE_STRING, { 0 }, 0, 0, D|E },
64 {"user-agent", "override User-Agent header", OFFSET(user_agent), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC},
65 {NULL}
66 };
67 #define HTTP_CLASS(flavor)\
68 static const AVClass flavor ## _context_class = {\
69     .class_name     = #flavor,\
70     .item_name      = av_default_item_name,\
71     .option         = options,\
72     .version        = LIBAVUTIL_VERSION_INT,\
73 }
74
75 HTTP_CLASS(http);
76 HTTP_CLASS(https);
77
78 static int http_connect(URLContext *h, const char *path, const char *local_path,
79                         const char *hoststr, const char *auth,
80                         const char *proxyauth, int *new_location);
81
82 void ff_http_init_auth_state(URLContext *dest, const URLContext *src)
83 {
84     memcpy(&((HTTPContext*)dest->priv_data)->auth_state,
85            &((HTTPContext*)src->priv_data)->auth_state, sizeof(HTTPAuthState));
86     memcpy(&((HTTPContext*)dest->priv_data)->proxy_auth_state,
87            &((HTTPContext*)src->priv_data)->proxy_auth_state,
88            sizeof(HTTPAuthState));
89 }
90
91 /* return non zero if error */
92 static int http_open_cnx(URLContext *h)
93 {
94     const char *path, *proxy_path, *lower_proto = "tcp", *local_path;
95     char hostname[1024], hoststr[1024], proto[10];
96     char auth[1024], proxyauth[1024] = "";
97     char path1[1024];
98     char buf[1024], urlbuf[1024];
99     int port, use_proxy, err, location_changed = 0, redirects = 0;
100     HTTPAuthType cur_auth_type, cur_proxy_auth_type;
101     HTTPContext *s = h->priv_data;
102     URLContext *hd = NULL;
103
104     proxy_path = getenv("http_proxy");
105     use_proxy = (proxy_path != NULL) && !getenv("no_proxy") &&
106         av_strstart(proxy_path, "http://", NULL);
107
108     /* fill the dest addr */
109  redo:
110     /* needed in any case to build the host string */
111     av_url_split(proto, sizeof(proto), auth, sizeof(auth),
112                  hostname, sizeof(hostname), &port,
113                  path1, sizeof(path1), s->location);
114     ff_url_join(hoststr, sizeof(hoststr), NULL, NULL, hostname, port, NULL);
115
116     if (!strcmp(proto, "https")) {
117         lower_proto = "tls";
118         use_proxy = 0;
119         if (port < 0)
120             port = 443;
121     }
122     if (port < 0)
123         port = 80;
124
125     if (path1[0] == '\0')
126         path = "/";
127     else
128         path = path1;
129     local_path = path;
130     if (use_proxy) {
131         /* Reassemble the request URL without auth string - we don't
132          * want to leak the auth to the proxy. */
133         ff_url_join(urlbuf, sizeof(urlbuf), proto, NULL, hostname, port, "%s",
134                     path1);
135         path = urlbuf;
136         av_url_split(NULL, 0, proxyauth, sizeof(proxyauth),
137                      hostname, sizeof(hostname), &port, NULL, 0, proxy_path);
138     }
139
140     ff_url_join(buf, sizeof(buf), lower_proto, NULL, hostname, port, NULL);
141     err = ffurl_open(&hd, buf, AVIO_FLAG_READ_WRITE,
142                      &h->interrupt_callback, NULL);
143     if (err < 0)
144         goto fail;
145
146     s->hd = hd;
147     cur_auth_type = s->auth_state.auth_type;
148     cur_proxy_auth_type = s->auth_state.auth_type;
149     if (http_connect(h, path, local_path, hoststr, auth, proxyauth, &location_changed) < 0)
150         goto fail;
151     if (s->http_code == 401) {
152         if (cur_auth_type == HTTP_AUTH_NONE && s->auth_state.auth_type != HTTP_AUTH_NONE) {
153             ffurl_close(hd);
154             goto redo;
155         } else
156             goto fail;
157     }
158     if (s->http_code == 407) {
159         if (cur_proxy_auth_type == HTTP_AUTH_NONE &&
160             s->proxy_auth_state.auth_type != HTTP_AUTH_NONE) {
161             ffurl_close(hd);
162             goto redo;
163         } else
164             goto fail;
165     }
166     if ((s->http_code == 301 || s->http_code == 302 || s->http_code == 303 || s->http_code == 307)
167         && location_changed == 1) {
168         /* url moved, get next */
169         ffurl_close(hd);
170         if (redirects++ >= MAX_REDIRECTS)
171             return AVERROR(EIO);
172         location_changed = 0;
173         goto redo;
174     }
175     return 0;
176  fail:
177     if (hd)
178         ffurl_close(hd);
179     s->hd = NULL;
180     return AVERROR(EIO);
181 }
182
183 static int http_open(URLContext *h, const char *uri, int flags)
184 {
185     HTTPContext *s = h->priv_data;
186
187     h->is_streamed = 1;
188
189     s->filesize = -1;
190     av_strlcpy(s->location, uri, sizeof(s->location));
191
192     if (s->headers) {
193         int len = strlen(s->headers);
194         if (len < 2 || strcmp("\r\n", s->headers + len - 2))
195             av_log(h, AV_LOG_WARNING, "No trailing CRLF found in HTTP header.\n");
196     }
197
198     return http_open_cnx(h);
199 }
200 static int http_getc(HTTPContext *s)
201 {
202     int len;
203     if (s->buf_ptr >= s->buf_end) {
204         len = ffurl_read(s->hd, s->buffer, BUFFER_SIZE);
205         if (len < 0) {
206             return AVERROR(EIO);
207         } else if (len == 0) {
208             return -1;
209         } else {
210             s->buf_ptr = s->buffer;
211             s->buf_end = s->buffer + len;
212         }
213     }
214     return *s->buf_ptr++;
215 }
216
217 static int http_get_line(HTTPContext *s, char *line, int line_size)
218 {
219     int ch;
220     char *q;
221
222     q = line;
223     for(;;) {
224         ch = http_getc(s);
225         if (ch < 0)
226             return AVERROR(EIO);
227         if (ch == '\n') {
228             /* process line */
229             if (q > line && q[-1] == '\r')
230                 q--;
231             *q = '\0';
232
233             return 0;
234         } else {
235             if ((q - line) < line_size - 1)
236                 *q++ = ch;
237         }
238     }
239 }
240
241 static int process_line(URLContext *h, char *line, int line_count,
242                         int *new_location)
243 {
244     HTTPContext *s = h->priv_data;
245     char *tag, *p, *end;
246
247     /* end of header */
248     if (line[0] == '\0')
249         return 0;
250
251     p = line;
252     if (line_count == 0) {
253         while (!isspace(*p) && *p != '\0')
254             p++;
255         while (isspace(*p))
256             p++;
257         s->http_code = strtol(p, &end, 10);
258
259         av_dlog(NULL, "http_code=%d\n", s->http_code);
260
261         /* error codes are 4xx and 5xx, but regard 401 as a success, so we
262          * don't abort until all headers have been parsed. */
263         if (s->http_code >= 400 && s->http_code < 600 && (s->http_code != 401
264             || s->auth_state.auth_type != HTTP_AUTH_NONE) &&
265             (s->http_code != 407 || s->proxy_auth_state.auth_type != HTTP_AUTH_NONE)) {
266             end += strspn(end, SPACE_CHARS);
267             av_log(h, AV_LOG_WARNING, "HTTP error %d %s\n",
268                    s->http_code, end);
269             return -1;
270         }
271     } else {
272         while (*p != '\0' && *p != ':')
273             p++;
274         if (*p != ':')
275             return 1;
276
277         *p = '\0';
278         tag = line;
279         p++;
280         while (isspace(*p))
281             p++;
282         if (!av_strcasecmp(tag, "Location")) {
283             strcpy(s->location, p);
284             *new_location = 1;
285         } else if (!av_strcasecmp (tag, "Content-Length") && s->filesize == -1) {
286             s->filesize = atoll(p);
287         } else if (!av_strcasecmp (tag, "Content-Range")) {
288             /* "bytes $from-$to/$document_size" */
289             const char *slash;
290             if (!strncmp (p, "bytes ", 6)) {
291                 p += 6;
292                 s->off = atoll(p);
293                 if ((slash = strchr(p, '/')) && strlen(slash) > 0)
294                     s->filesize = atoll(slash+1);
295             }
296             h->is_streamed = 0; /* we _can_ in fact seek */
297         } else if (!av_strcasecmp(tag, "Accept-Ranges") && !strncmp(p, "bytes", 5)) {
298             h->is_streamed = 0;
299         } else if (!av_strcasecmp (tag, "Transfer-Encoding") && !av_strncasecmp(p, "chunked", 7)) {
300             s->filesize = -1;
301             s->chunksize = 0;
302         } else if (!av_strcasecmp (tag, "WWW-Authenticate")) {
303             ff_http_auth_handle_header(&s->auth_state, tag, p);
304         } else if (!av_strcasecmp (tag, "Authentication-Info")) {
305             ff_http_auth_handle_header(&s->auth_state, tag, p);
306         } else if (!av_strcasecmp (tag, "Proxy-Authenticate")) {
307             ff_http_auth_handle_header(&s->proxy_auth_state, tag, p);
308         } else if (!av_strcasecmp (tag, "Connection")) {
309             if (!strcmp(p, "close"))
310                 s->willclose = 1;
311         }
312     }
313     return 1;
314 }
315
316 static inline int has_header(const char *str, const char *header)
317 {
318     /* header + 2 to skip over CRLF prefix. (make sure you have one!) */
319     if (!str)
320         return 0;
321     return av_stristart(str, header + 2, NULL) || av_stristr(str, header);
322 }
323
324 static int http_connect(URLContext *h, const char *path, const char *local_path,
325                         const char *hoststr, const char *auth,
326                         const char *proxyauth, int *new_location)
327 {
328     HTTPContext *s = h->priv_data;
329     int post, err;
330     char line[1024];
331     char headers[1024] = "";
332     char *authstr = NULL, *proxyauthstr = NULL;
333     int64_t off = s->off;
334     int len = 0;
335     const char *method;
336
337
338     /* send http header */
339     post = h->flags & AVIO_FLAG_WRITE;
340     method = post ? "POST" : "GET";
341     authstr = ff_http_auth_create_response(&s->auth_state, auth, local_path,
342                                            method);
343     proxyauthstr = ff_http_auth_create_response(&s->proxy_auth_state, proxyauth,
344                                                 local_path, method);
345
346     /* set default headers if needed */
347     if (!has_header(s->headers, "\r\nUser-Agent: "))
348         len += av_strlcatf(headers + len, sizeof(headers) - len,
349                            "User-Agent: %s\r\n",
350                            s->user_agent ? s->user_agent : LIBAVFORMAT_IDENT);
351     if (!has_header(s->headers, "\r\nAccept: "))
352         len += av_strlcpy(headers + len, "Accept: */*\r\n",
353                           sizeof(headers) - len);
354     if (!has_header(s->headers, "\r\nRange: ") && !post)
355         len += av_strlcatf(headers + len, sizeof(headers) - len,
356                            "Range: bytes=%"PRId64"-\r\n", s->off);
357     if (!has_header(s->headers, "\r\nConnection: "))
358         len += av_strlcpy(headers + len, "Connection: close\r\n",
359                           sizeof(headers)-len);
360     if (!has_header(s->headers, "\r\nHost: "))
361         len += av_strlcatf(headers + len, sizeof(headers) - len,
362                            "Host: %s\r\n", hoststr);
363
364     /* now add in custom headers */
365     if (s->headers)
366         av_strlcpy(headers + len, s->headers, sizeof(headers) - len);
367
368     snprintf(s->buffer, sizeof(s->buffer),
369              "%s %s HTTP/1.1\r\n"
370              "%s"
371              "%s"
372              "%s"
373              "%s%s"
374              "\r\n",
375              method,
376              path,
377              post && s->chunked_post ? "Transfer-Encoding: chunked\r\n" : "",
378              headers,
379              authstr ? authstr : "",
380              proxyauthstr ? "Proxy-" : "", proxyauthstr ? proxyauthstr : "");
381
382     av_freep(&authstr);
383     av_freep(&proxyauthstr);
384     if (ffurl_write(s->hd, s->buffer, strlen(s->buffer)) < 0)
385         return AVERROR(EIO);
386
387     /* init input buffer */
388     s->buf_ptr = s->buffer;
389     s->buf_end = s->buffer;
390     s->line_count = 0;
391     s->off = 0;
392     s->filesize = -1;
393     s->willclose = 0;
394     if (post) {
395         /* Pretend that it did work. We didn't read any header yet, since
396          * we've still to send the POST data, but the code calling this
397          * function will check http_code after we return. */
398         s->http_code = 200;
399         return 0;
400     }
401     s->chunksize = -1;
402
403     /* wait for header */
404     for(;;) {
405         if (http_get_line(s, line, sizeof(line)) < 0)
406             return AVERROR(EIO);
407
408         av_dlog(NULL, "header='%s'\n", line);
409
410         err = process_line(h, line, s->line_count, new_location);
411         if (err < 0)
412             return err;
413         if (err == 0)
414             break;
415         s->line_count++;
416     }
417
418     return (off == s->off) ? 0 : -1;
419 }
420
421
422 static int http_buf_read(URLContext *h, uint8_t *buf, int size)
423 {
424     HTTPContext *s = h->priv_data;
425     int len;
426     /* read bytes from input buffer first */
427     len = s->buf_end - s->buf_ptr;
428     if (len > 0) {
429         if (len > size)
430             len = size;
431         memcpy(buf, s->buf_ptr, len);
432         s->buf_ptr += len;
433     } else {
434         if (!s->willclose && s->filesize >= 0 && s->off >= s->filesize)
435             return AVERROR_EOF;
436         len = ffurl_read(s->hd, buf, size);
437     }
438     if (len > 0) {
439         s->off += len;
440         if (s->chunksize > 0)
441             s->chunksize -= len;
442     }
443     return len;
444 }
445
446 static int http_read(URLContext *h, uint8_t *buf, int size)
447 {
448     HTTPContext *s = h->priv_data;
449
450     if (s->chunksize >= 0) {
451         if (!s->chunksize) {
452             char line[32];
453
454             for(;;) {
455                 do {
456                     if (http_get_line(s, line, sizeof(line)) < 0)
457                         return AVERROR(EIO);
458                 } while (!*line);    /* skip CR LF from last chunk */
459
460                 s->chunksize = strtoll(line, NULL, 16);
461
462                 av_dlog(NULL, "Chunked encoding data size: %"PRId64"'\n", s->chunksize);
463
464                 if (!s->chunksize)
465                     return 0;
466                 break;
467             }
468         }
469         size = FFMIN(size, s->chunksize);
470     }
471     return http_buf_read(h, buf, size);
472 }
473
474 /* used only when posting data */
475 static int http_write(URLContext *h, const uint8_t *buf, int size)
476 {
477     char temp[11] = "";  /* 32-bit hex + CRLF + nul */
478     int ret;
479     char crlf[] = "\r\n";
480     HTTPContext *s = h->priv_data;
481
482     if (!s->chunked_post) {
483         /* non-chunked data is sent without any special encoding */
484         return ffurl_write(s->hd, buf, size);
485     }
486
487     /* silently ignore zero-size data since chunk encoding that would
488      * signal EOF */
489     if (size > 0) {
490         /* upload data using chunked encoding */
491         snprintf(temp, sizeof(temp), "%x\r\n", size);
492
493         if ((ret = ffurl_write(s->hd, temp, strlen(temp))) < 0 ||
494             (ret = ffurl_write(s->hd, buf, size)) < 0 ||
495             (ret = ffurl_write(s->hd, crlf, sizeof(crlf) - 1)) < 0)
496             return ret;
497     }
498     return size;
499 }
500
501 static int http_close(URLContext *h)
502 {
503     int ret = 0;
504     char footer[] = "0\r\n\r\n";
505     HTTPContext *s = h->priv_data;
506
507     /* signal end of chunked encoding if used */
508     if ((h->flags & AVIO_FLAG_WRITE) && s->chunked_post) {
509         ret = ffurl_write(s->hd, footer, sizeof(footer) - 1);
510         ret = ret > 0 ? 0 : ret;
511     }
512
513     if (s->hd)
514         ffurl_close(s->hd);
515     return ret;
516 }
517
518 static int64_t http_seek(URLContext *h, int64_t off, int whence)
519 {
520     HTTPContext *s = h->priv_data;
521     URLContext *old_hd = s->hd;
522     int64_t old_off = s->off;
523     uint8_t old_buf[BUFFER_SIZE];
524     int old_buf_size;
525
526     if (whence == AVSEEK_SIZE)
527         return s->filesize;
528     else if ((s->filesize == -1 && whence == SEEK_END) || h->is_streamed)
529         return -1;
530
531     /* we save the old context in case the seek fails */
532     old_buf_size = s->buf_end - s->buf_ptr;
533     memcpy(old_buf, s->buf_ptr, old_buf_size);
534     s->hd = NULL;
535     if (whence == SEEK_CUR)
536         off += s->off;
537     else if (whence == SEEK_END)
538         off += s->filesize;
539     s->off = off;
540
541     /* if it fails, continue on old connection */
542     if (http_open_cnx(h) < 0) {
543         memcpy(s->buffer, old_buf, old_buf_size);
544         s->buf_ptr = s->buffer;
545         s->buf_end = s->buffer + old_buf_size;
546         s->hd = old_hd;
547         s->off = old_off;
548         return -1;
549     }
550     ffurl_close(old_hd);
551     return off;
552 }
553
554 static int
555 http_get_file_handle(URLContext *h)
556 {
557     HTTPContext *s = h->priv_data;
558     return ffurl_get_file_handle(s->hd);
559 }
560
561 #if CONFIG_HTTP_PROTOCOL
562 URLProtocol ff_http_protocol = {
563     .name                = "http",
564     .url_open            = http_open,
565     .url_read            = http_read,
566     .url_write           = http_write,
567     .url_seek            = http_seek,
568     .url_close           = http_close,
569     .url_get_file_handle = http_get_file_handle,
570     .priv_data_size      = sizeof(HTTPContext),
571     .priv_data_class     = &http_context_class,
572 };
573 #endif
574 #if CONFIG_HTTPS_PROTOCOL
575 URLProtocol ff_https_protocol = {
576     .name                = "https",
577     .url_open            = http_open,
578     .url_read            = http_read,
579     .url_write           = http_write,
580     .url_seek            = http_seek,
581     .url_close           = http_close,
582     .url_get_file_handle = http_get_file_handle,
583     .priv_data_size      = sizeof(HTTPContext),
584     .priv_data_class     = &https_context_class,
585 };
586 #endif
587
588 #if CONFIG_HTTPPROXY_PROTOCOL
589 static int http_proxy_close(URLContext *h)
590 {
591     HTTPContext *s = h->priv_data;
592     if (s->hd)
593         ffurl_close(s->hd);
594     return 0;
595 }
596
597 static int http_proxy_open(URLContext *h, const char *uri, int flags)
598 {
599     HTTPContext *s = h->priv_data;
600     char hostname[1024], hoststr[1024];
601     char auth[1024], pathbuf[1024], *path;
602     char line[1024], lower_url[100];
603     int port, ret = 0;
604     HTTPAuthType cur_auth_type;
605     char *authstr;
606
607     h->is_streamed = 1;
608
609     av_url_split(NULL, 0, auth, sizeof(auth), hostname, sizeof(hostname), &port,
610                  pathbuf, sizeof(pathbuf), uri);
611     ff_url_join(hoststr, sizeof(hoststr), NULL, NULL, hostname, port, NULL);
612     path = pathbuf;
613     if (*path == '/')
614         path++;
615
616     ff_url_join(lower_url, sizeof(lower_url), "tcp", NULL, hostname, port,
617                 NULL);
618 redo:
619     ret = ffurl_open(&s->hd, lower_url, AVIO_FLAG_READ_WRITE,
620                      &h->interrupt_callback, NULL);
621     if (ret < 0)
622         return ret;
623
624     authstr = ff_http_auth_create_response(&s->proxy_auth_state, auth,
625                                            path, "CONNECT");
626     snprintf(s->buffer, sizeof(s->buffer),
627              "CONNECT %s HTTP/1.1\r\n"
628              "Host: %s\r\n"
629              "Connection: close\r\n"
630              "%s%s"
631              "\r\n",
632              path,
633              hoststr,
634              authstr ? "Proxy-" : "", authstr ? authstr : "");
635     av_freep(&authstr);
636
637     if ((ret = ffurl_write(s->hd, s->buffer, strlen(s->buffer))) < 0)
638         goto fail;
639
640     s->buf_ptr = s->buffer;
641     s->buf_end = s->buffer;
642     s->line_count = 0;
643     s->filesize = -1;
644     cur_auth_type = s->proxy_auth_state.auth_type;
645
646     for (;;) {
647         int new_loc;
648         // Note: This uses buffering, potentially reading more than the
649         // HTTP header. If tunneling a protocol where the server starts
650         // the conversation, we might buffer part of that here, too.
651         // Reading that requires using the proper ffurl_read() function
652         // on this URLContext, not using the fd directly (as the tls
653         // protocol does). This shouldn't be an issue for tls though,
654         // since the client starts the conversation there, so there
655         // is no extra data that we might buffer up here.
656         if (http_get_line(s, line, sizeof(line)) < 0) {
657             ret = AVERROR(EIO);
658             goto fail;
659         }
660
661         av_dlog(h, "header='%s'\n", line);
662
663         ret = process_line(h, line, s->line_count, &new_loc);
664         if (ret < 0)
665             goto fail;
666         if (ret == 0)
667             break;
668         s->line_count++;
669     }
670     if (s->http_code == 407 && cur_auth_type == HTTP_AUTH_NONE &&
671         s->proxy_auth_state.auth_type != HTTP_AUTH_NONE) {
672         ffurl_close(s->hd);
673         s->hd = NULL;
674         goto redo;
675     }
676
677     if (s->http_code < 400)
678         return 0;
679     ret = AVERROR(EIO);
680
681 fail:
682     http_proxy_close(h);
683     return ret;
684 }
685
686 static int http_proxy_write(URLContext *h, const uint8_t *buf, int size)
687 {
688     HTTPContext *s = h->priv_data;
689     return ffurl_write(s->hd, buf, size);
690 }
691
692 URLProtocol ff_httpproxy_protocol = {
693     .name                = "httpproxy",
694     .url_open            = http_proxy_open,
695     .url_read            = http_buf_read,
696     .url_write           = http_proxy_write,
697     .url_close           = http_proxy_close,
698     .url_get_file_handle = http_get_file_handle,
699     .priv_data_size      = sizeof(HTTPContext),
700 };
701 #endif