1 #ifndef CURLINC_URLAPI_H 2 #define CURLINC_URLAPI_H 3 /*************************************************************************** 4 * _ _ ____ _ 5 * Project ___| | | | _ \| | 6 * / __| | | | |_) | | 7 * | (__| |_| | _ <| |___ 8 * \___|\___/|_| \_\_____| 9 * 10 * Copyright (C) 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 30 extern "C" { 31 #endif 32 33 /* the error codes for the URL API */ 34 typedef enum { 35 CURLUE_OK, 36 CURLUE_BAD_HANDLE, /* 1 */ 37 CURLUE_BAD_PARTPOINTER, /* 2 */ 38 CURLUE_MALFORMED_INPUT, /* 3 */ 39 CURLUE_BAD_PORT_NUMBER, /* 4 */ 40 CURLUE_UNSUPPORTED_SCHEME, /* 5 */ 41 CURLUE_URLDECODE, /* 6 */ 42 CURLUE_OUT_OF_MEMORY, /* 7 */ 43 CURLUE_USER_NOT_ALLOWED, /* 8 */ 44 CURLUE_UNKNOWN_PART, /* 9 */ 45 CURLUE_NO_SCHEME, /* 10 */ 46 CURLUE_NO_USER, /* 11 */ 47 CURLUE_NO_PASSWORD, /* 12 */ 48 CURLUE_NO_OPTIONS, /* 13 */ 49 CURLUE_NO_HOST, /* 14 */ 50 CURLUE_NO_PORT, /* 15 */ 51 CURLUE_NO_QUERY, /* 16 */ 52 CURLUE_NO_FRAGMENT, /* 17 */ 53 CURLUE_NO_ZONEID, /* 18 */ 54 CURLUE_BAD_FILE_URL, /* 19 */ 55 CURLUE_BAD_FRAGMENT, /* 20 */ 56 CURLUE_BAD_HOSTNAME, /* 21 */ 57 CURLUE_BAD_IPV6, /* 22 */ 58 CURLUE_BAD_LOGIN, /* 23 */ 59 CURLUE_BAD_PASSWORD, /* 24 */ 60 CURLUE_BAD_PATH, /* 25 */ 61 CURLUE_BAD_QUERY, /* 26 */ 62 CURLUE_BAD_SCHEME, /* 27 */ 63 CURLUE_BAD_SLASHES, /* 28 */ 64 CURLUE_BAD_USER, /* 29 */ 65 CURLUE_LACKS_IDN, /* 30 */ 66 CURLUE_TOO_LARGE, /* 31 */ 67 CURLUE_LAST 68 } CURLUcode; 69 70 typedef enum { 71 CURLUPART_URL, 72 CURLUPART_SCHEME, 73 CURLUPART_USER, 74 CURLUPART_PASSWORD, 75 CURLUPART_OPTIONS, 76 CURLUPART_HOST, 77 CURLUPART_PORT, 78 CURLUPART_PATH, 79 CURLUPART_QUERY, 80 CURLUPART_FRAGMENT, 81 CURLUPART_ZONEID /* added in 7.65.0 */ 82 } CURLUPart; 83 84 #define CURLU_DEFAULT_PORT (1<<0) /* return default port number */ 85 #define CURLU_NO_DEFAULT_PORT (1<<1) /* act as if no port number was set, 86 if the port number matches the 87 default for the scheme */ 88 #define CURLU_DEFAULT_SCHEME (1<<2) /* return default scheme if 89 missing */ 90 #define CURLU_NON_SUPPORT_SCHEME (1<<3) /* allow non-supported scheme */ 91 #define CURLU_PATH_AS_IS (1<<4) /* leave dot sequences */ 92 #define CURLU_DISALLOW_USER (1<<5) /* no user+password allowed */ 93 #define CURLU_URLDECODE (1<<6) /* URL decode on get */ 94 #define CURLU_URLENCODE (1<<7) /* URL encode on set */ 95 #define CURLU_APPENDQUERY (1<<8) /* append a form style part */ 96 #define CURLU_GUESS_SCHEME (1<<9) /* legacy curl-style guessing */ 97 #define CURLU_NO_AUTHORITY (1<<10) /* Allow empty authority when the 98 scheme is unknown. */ 99 #define CURLU_ALLOW_SPACE (1<<11) /* Allow spaces in the URL */ 100 #define CURLU_PUNYCODE (1<<12) /* get the host name in punycode */ 101 #define CURLU_PUNY2IDN (1<<13) /* punycode => IDN conversion */ 102 103 typedef struct Curl_URL CURLU; 104 105 /* 106 * curl_url() creates a new CURLU handle and returns a pointer to it. 107 * Must be freed with curl_url_cleanup(). 108 */ 109 CURL_EXTERN CURLU *curl_url(void); 110 111 /* 112 * curl_url_cleanup() frees the CURLU handle and related resources used for 113 * the URL parsing. It will not free strings previously returned with the URL 114 * API. 115 */ 116 CURL_EXTERN void curl_url_cleanup(CURLU *handle); 117 118 /* 119 * curl_url_dup() duplicates a CURLU handle and returns a new copy. The new 120 * handle must also be freed with curl_url_cleanup(). 121 */ 122 CURL_EXTERN CURLU *curl_url_dup(const CURLU *in); 123 124 /* 125 * curl_url_get() extracts a specific part of the URL from a CURLU 126 * handle. Returns error code. The returned pointer MUST be freed with 127 * curl_free() afterwards. 128 */ 129 CURL_EXTERN CURLUcode curl_url_get(const CURLU *handle, CURLUPart what, 130 char **part, unsigned int flags); 131 132 /* 133 * curl_url_set() sets a specific part of the URL in a CURLU handle. Returns 134 * error code. The passed in string will be copied. Passing a NULL instead of 135 * a part string, clears that part. 136 */ 137 CURL_EXTERN CURLUcode curl_url_set(CURLU *handle, CURLUPart what, 138 const char *part, unsigned int flags); 139 140 /* 141 * curl_url_strerror() turns a CURLUcode value into the equivalent human 142 * readable error string. This is useful for printing meaningful error 143 * messages. 144 */ 145 CURL_EXTERN const char *curl_url_strerror(CURLUcode); 146 147 #ifdef __cplusplus 148 } /* end of extern "C" */ 149 #endif 150 151 #endif /* CURLINC_URLAPI_H */ 152