| 2338 | } |
| 2339 | |
| 2340 | static int http_proxy_write(URLContext *h, const uint8_t *buf, int size) |
| 2341 | { |
| 2342 | HTTPContext *s = h->priv_data; |
| 2343 | return ffurl_write(s->hd, buf, size); |
| 2344 | } |
| 2345 | |
| 2346 | const URLProtocol ff_httpproxy_protocol = { |
| 2347 | .name = "httpproxy", |
nothing calls this directly
no test coverage detected