ReactOS 0.4.16-dev-1946-g52006dd
urlapi.h
Go to the documentation of this file.
1#ifndef CURLINC_URLAPI_H
2#define CURLINC_URLAPI_H
3/***************************************************************************
4 * _ _ ____ _
5 * Project ___| | | | _ \| |
6 * / __| | | | |_) | |
7 * | (__| |_| | _ <| |___
8 * \___|\___/|_| \_\_____|
9 *
10 * Copyright (C) 2018 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
11 *
12 * This software is licensed as described in the file COPYING, which
13 * you should have received as part of this distribution. The terms
14 * are also available at https://curl.se/docs/copyright.html.
15 *
16 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
17 * copies of the Software, and permit persons to whom the Software is
18 * furnished to do so, under the terms of the COPYING file.
19 *
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
22 *
23 * SPDX-License-Identifier: curl
24 *
25 ***************************************************************************/
26
27#include "curl.h"
28
29#ifdef __cplusplus
30extern "C" {
31#endif
32
33/* the error codes for the URL API */
34typedef enum {
67
68typedef enum {
79 CURLUPART_ZONEID /* added in 7.65.0 */
81
82#define CURLU_DEFAULT_PORT (1<<0) /* return default port number */
83#define CURLU_NO_DEFAULT_PORT (1<<1) /* act as if no port number was set,
84 if the port number matches the
85 default for the scheme */
86#define CURLU_DEFAULT_SCHEME (1<<2) /* return default scheme if
87 missing */
88#define CURLU_NON_SUPPORT_SCHEME (1<<3) /* allow non-supported scheme */
89#define CURLU_PATH_AS_IS (1<<4) /* leave dot sequences */
90#define CURLU_DISALLOW_USER (1<<5) /* no user+password allowed */
91#define CURLU_URLDECODE (1<<6) /* URL decode on get */
92#define CURLU_URLENCODE (1<<7) /* URL encode on set */
93#define CURLU_APPENDQUERY (1<<8) /* append a form style part */
94#define CURLU_GUESS_SCHEME (1<<9) /* legacy curl-style guessing */
95#define CURLU_NO_AUTHORITY (1<<10) /* Allow empty authority when the
96 scheme is unknown. */
97#define CURLU_ALLOW_SPACE (1<<11) /* Allow spaces in the URL */
98
99typedef struct Curl_URL CURLU;
100
102 * curl_url() creates a new CURLU handle and returns a pointer to it.
103 * Must be freed with curl_url_cleanup().
104 */
106
107/*
108 * curl_url_cleanup() frees the CURLU handle and related resources used for
109 * the URL parsing. It will not free strings previously returned with the URL
110 * API.
111 */
113
115 * curl_url_dup() duplicates a CURLU handle and returns a new copy. The new
116 * handle must also be freed with curl_url_cleanup().
117 */
119
120/*
121 * curl_url_get() extracts a specific part of the URL from a CURLU
122 * handle. Returns error code. The returned pointer MUST be freed with
123 * curl_free() afterwards.
124 */
126 char **part, unsigned int flags);
127
128/*
129 * curl_url_set() sets a specific part of the URL in a CURLU handle. Returns
130 * error code. The passed in string will be copied. Passing a NULL instead of
131 * a part string, clears that part.
132 */
134 const char *part, unsigned int flags);
135
136/*
137 * curl_url_strerror() turns a CURLUcode value into the equivalent human
138 * readable error string. This is useful for printing meaningful error
139 * messages.
140 */
142
143#ifdef __cplusplus
144} /* end of extern "C" */
145#endif
146
147#endif /* CURLINC_URLAPI_H */
#define CURL_EXTERN
Definition: curl.h:124
GLuint in
Definition: glext.h:9616
GLbitfield flags
Definition: glext.h:7161
CURL_EXTERN CURLUcode curl_url_set(CURLU *handle, CURLUPart what, const char *part, unsigned int flags)
CURL_EXTERN CURLU * curl_url(void)
CURL_EXTERN void curl_url_cleanup(CURLU *handle)
CURL_EXTERN CURLU * curl_url_dup(CURLU *in)
CURLUcode
Definition: urlapi.h:34
@ CURLUE_URLDECODE
Definition: urlapi.h:41
@ CURLUE_BAD_PARTPOINTER
Definition: urlapi.h:37
@ CURLUE_NO_PASSWORD
Definition: urlapi.h:47
@ CURLUE_BAD_PORT_NUMBER
Definition: urlapi.h:39
@ CURLUE_BAD_IPV6
Definition: urlapi.h:57
@ CURLUE_BAD_SCHEME
Definition: urlapi.h:62
@ CURLUE_BAD_LOGIN
Definition: urlapi.h:58
@ CURLUE_LAST
Definition: urlapi.h:65
@ CURLUE_UNSUPPORTED_SCHEME
Definition: urlapi.h:40
@ CURLUE_NO_ZONEID
Definition: urlapi.h:53
@ CURLUE_NO_SCHEME
Definition: urlapi.h:45
@ CURLUE_BAD_PATH
Definition: urlapi.h:60
@ CURLUE_OK
Definition: urlapi.h:35
@ CURLUE_NO_FRAGMENT
Definition: urlapi.h:52
@ CURLUE_BAD_USER
Definition: urlapi.h:64
@ CURLUE_BAD_FILE_URL
Definition: urlapi.h:54
@ CURLUE_BAD_SLASHES
Definition: urlapi.h:63
@ CURLUE_NO_QUERY
Definition: urlapi.h:51
@ CURLUE_NO_USER
Definition: urlapi.h:46
@ CURLUE_BAD_FRAGMENT
Definition: urlapi.h:55
@ CURLUE_USER_NOT_ALLOWED
Definition: urlapi.h:43
@ CURLUE_NO_OPTIONS
Definition: urlapi.h:48
@ CURLUE_MALFORMED_INPUT
Definition: urlapi.h:38
@ CURLUE_NO_HOST
Definition: urlapi.h:49
@ CURLUE_BAD_HANDLE
Definition: urlapi.h:36
@ CURLUE_OUT_OF_MEMORY
Definition: urlapi.h:42
@ CURLUE_NO_PORT
Definition: urlapi.h:50
@ CURLUE_BAD_QUERY
Definition: urlapi.h:61
@ CURLUE_UNKNOWN_PART
Definition: urlapi.h:44
@ CURLUE_BAD_PASSWORD
Definition: urlapi.h:59
@ CURLUE_BAD_HOSTNAME
Definition: urlapi.h:56
CURLUPart
Definition: urlapi.h:68
@ CURLUPART_PASSWORD
Definition: urlapi.h:72
@ CURLUPART_USER
Definition: urlapi.h:71
@ CURLUPART_HOST
Definition: urlapi.h:74
@ CURLUPART_OPTIONS
Definition: urlapi.h:73
@ CURLUPART_PATH
Definition: urlapi.h:76
@ CURLUPART_URL
Definition: urlapi.h:69
@ CURLUPART_SCHEME
Definition: urlapi.h:70
@ CURLUPART_FRAGMENT
Definition: urlapi.h:78
@ CURLUPART_ZONEID
Definition: urlapi.h:79
@ CURLUPART_PORT
Definition: urlapi.h:75
@ CURLUPART_QUERY
Definition: urlapi.h:77
CURL_EXTERN CURLUcode curl_url_get(CURLU *handle, CURLUPart what, char **part, unsigned int flags)
CURL_EXTERN const char * curl_url_strerror(CURLUcode)
struct Curl_URL CURLU
Definition: urlapi.h:95