Lines Matching refs:path
45 static int gopher_connect(URLContext *h, const char *path)
49 if (!*path) return AVERROR(EINVAL);
50 switch (*++path) {
53 path = strchr(path, '/');
54 if (!path) return AVERROR(EINVAL);
59 *path);
64 snprintf(buffer, sizeof(buffer), "%s\r\n", path);
82 char proto[10], hostname[1024], auth[1024], path[1024], buf[1024];
90 hostname, sizeof(hostname), &port, path, sizeof(path), uri);
106 if ((err = gopher_connect(h, path)) < 0)