Lines Matching defs:path
166 * Create request line using |rctx| and |path| (or "/" in case |path| is NULL).
171 const char *path)
196 /* Make sure path includes a forward slash */
197 if (path == NULL)
198 path = "/";
199 if (path[0] != '/' && BIO_printf(rctx->mem, "/") <= 0)
202 * Add (the rest of) the path and the HTTP version,
205 if (BIO_printf(rctx->mem, "%s "HTTP_1_0"\r\n", path) <= 0)
956 NULL /* path */, NULL, NULL))
1004 int OSSL_HTTP_set1_request(OSSL_HTTP_REQ_CTX *rctx, const char *path,
1025 : NULL, rctx->port, path)
1123 char *path;
1138 &port, NULL /* port_num */, &path, NULL, NULL))
1146 if (!OSSL_HTTP_set1_request(rctx, path, headers,
1158 OPENSSL_free(path);
1166 path = OPENSSL_strdup(redirection_url);
1167 if (path == NULL) {
1203 const char *path, int use_ssl,
1222 if (OSSL_HTTP_set1_request(rctx, path, headers, content_type, req,