Lines Matching refs:is

38 If I<proxy> is NULL, take any default value from the C<http_proxy>
39 environment variable, or from C<https_proxy> if I<use_ssl> is nonzero.
42 environment variable, or from C<HTTPS_PROXY> if I<use_ssl> is nonzero.
43 If I<no_proxy> is NULL, take any default exclusion value from the C<no_proxy>
46 which is a list of proxy hosts separated by C<,> and/or whitespace,
49 When I<server> is a string delimited by C<[> and C<]>, which are used for IPv6
57 The port component is optional and defaults to C<0>.
58 If given, it must be in decimal form. If the I<pport_num> argument is not NULL
59 the integer value of the port number is assigned to I<*pport_num> on success.
60 The path component is also optional and defaults to C</>.
62 I<ppath>, I<pquery>, and I<pfrag>, is assigned the respective url component.
63 Any IPv6 address in I<*phost> is enclosed in C<[> and C<]>.
65 It is the responsibility of the caller to free them using L<OPENSSL_free(3)>.
66 If I<pquery> is NULL, any given query component is handled as part of the path.
67 A string returned via I<*ppath> is guaranteed to begin with a C</> character.
69 an empty string is provided.
71 OSSL_HTTP_parse_url() is a special form of OSSL_parse_url()
73 If I<pssl> is not NULL, I<*pssl> is assigned 1 in case parsing was successful
74 and the scheme is C<https>, else 0.
75 The port component is optional and defaults to C<443> if the scheme is C<https>,
78 otherwise the first path element is interpreted as the host.
81 is equivalent to
86 OSSL_HTTP_adapt_proxy() returns NULL if no proxy is to be used,
88 which is either the proxy name handed in or an environment variable value.