Home
last modified time | relevance | path

Searched refs:host_end (Results 1 – 1 of 1) sorted by relevance

/src/crypto/openssl/crypto/http/
H A Dhttp_lib.c60 const char *host, *host_end; in OSSL_parse_url() local
104 host_end = strchr(host + 1, ']'); in OSSL_parse_url()
105 if (host_end == NULL) in OSSL_parse_url()
107 p = ++host_end; in OSSL_parse_url()
110 host_end = strpbrk(host, ":/?#"); in OSSL_parse_url()
111 if (host_end == NULL) /* the remaining string is just the hostname */ in OSSL_parse_url()
112 host_end = host + strlen(host); in OSSL_parse_url()
113 p = host_end; in OSSL_parse_url()
159 || !copy_substring(phost, host, host_end) in OSSL_parse_url()