| 115 | } |
| 116 | |
| 117 | static int gopher_read(URLContext *h, uint8_t *buf, int size) |
| 118 | { |
| 119 | GopherContext *s = h->priv_data; |
| 120 | int len = ffurl_read(s->hd, buf, size); |
| 121 | return len; |
| 122 | } |
| 123 | |
| 124 | #if CONFIG_GOPHER_PROTOCOL |
| 125 | const URLProtocol ff_gopher_protocol = { |
nothing calls this directly
no test coverage detected