Lines Matching refs:URL
22 libcurl-url - URL interface overview
26 The URL interface provides functions for parsing and generating URLs.
34 Create a handle that holds URL info and resources with curl_url(3):
55 By setting a URL to the handle with curl_url_set(3), the URL is parsed
56 and stored in the handle. If the URL is not syntactically correct it returns
65 If successful, this stores the URL in its individual parts within the handle.
69 When a handle already contains info about a URL, setting a relative URL makes
75 # GET URL
77 The **CURLU** handle represents a URL and you can easily extract that with
88 When a URL has been parsed or parts have been set, you can extract those
103 Extracted parts are not URL decoded unless the user also asks for it with the
111 A user set individual URL parts, either after having parsed a full URL or
126 Set parts are not URL encoded unless the user asks for it with the
134 Imagine a handle that holds the URL "https://example.com/?shoes=2". An
142 handle's full URL then equals "https://example.com/?shoes=2&hat=1".
144 The appended string can of course also get URL encoded on add, and if asked to
145 URL encode, the encoding process skips the '=' character. For example, append
146 "candy=N&N" to what we already have, and URL encode it to deal with the
154 Now the URL looks like
162 A URL with a literal IPv6 address can be parsed even when IPv6 support is not