1 | #ifndef HEADER_CURL_URL_H |
2 | #define |
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 | #include "curl_setup.h" |
27 | |
28 | /* |
29 | * Prototypes for library-wide functions provided by url.c |
30 | */ |
31 | |
32 | CURLcode Curl_init_do(struct Curl_easy *data, struct connectdata *conn); |
33 | CURLcode Curl_open(struct Curl_easy **curl); |
34 | CURLcode Curl_init_userdefined(struct Curl_easy *data); |
35 | |
36 | void Curl_freeset(struct Curl_easy *data); |
37 | CURLcode Curl_uc_to_curlcode(CURLUcode uc); |
38 | CURLcode Curl_close(struct Curl_easy **datap); /* opposite of curl_open() */ |
39 | CURLcode Curl_connect(struct Curl_easy *, bool *async, bool *protocol_connect); |
40 | void Curl_disconnect(struct Curl_easy *data, |
41 | struct connectdata *, bool dead_connection); |
42 | CURLcode Curl_setup_conn(struct Curl_easy *data, |
43 | bool *protocol_done); |
44 | void Curl_free_request_state(struct Curl_easy *data); |
45 | CURLcode Curl_parse_login_details(const char *login, const size_t len, |
46 | char **userptr, char **passwdptr, |
47 | char **optionsptr); |
48 | |
49 | const struct Curl_handler *Curl_builtin_scheme(const char *scheme, |
50 | size_t schemelen); |
51 | |
52 | #define CURL_DEFAULT_PROXY_PORT 1080 /* default proxy port unless specified */ |
53 | #define CURL_DEFAULT_HTTPS_PROXY_PORT 443 /* default https proxy port unless |
54 | specified */ |
55 | |
56 | #ifdef CURL_DISABLE_VERBOSE_STRINGS |
57 | #define Curl_verboseconnect(x,y) Curl_nop_stmt |
58 | #else |
59 | void Curl_verboseconnect(struct Curl_easy *data, struct connectdata *conn); |
60 | #endif |
61 | |
62 | #if defined(USE_HTTP2) || defined(USE_HTTP3) |
63 | void Curl_data_priority_clear_state(struct Curl_easy *data); |
64 | #else |
65 | #define Curl_data_priority_clear_state(x) |
66 | #endif /* !(defined(USE_HTTP2) || defined(USE_HTTP3)) */ |
67 | |
68 | #ifdef USE_NGHTTP2 |
69 | CURLcode Curl_data_priority_add_child(struct Curl_easy *parent, |
70 | struct Curl_easy *child, |
71 | bool exclusive); |
72 | #else |
73 | #define Curl_data_priority_add_child(x, y, z) CURLE_NOT_BUILT_IN |
74 | #endif |
75 | |
76 | #endif /* HEADER_CURL_URL_H */ |
77 | |