| 37 | } GopherContext; |
| 38 | |
| 39 | static int gopher_write(URLContext *h, const uint8_t *buf, int size) |
| 40 | { |
| 41 | GopherContext *s = h->priv_data; |
| 42 | return ffurl_write(s->hd, buf, size); |
| 43 | } |
| 44 | |
| 45 | static int gopher_connect(URLContext *h, const char *path) |
| 46 | { |
no test coverage detected