url.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. #ifndef HEADER_CURL_URL_H
  2. #define HEADER_CURL_URL_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 1998 - 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. ***************************************************************************/
  24. #include "curl_setup.h"
  25. /*
  26. * Prototypes for library-wide functions provided by url.c
  27. */
  28. CURLcode Curl_init_do(struct Curl_easy *data, struct connectdata *conn);
  29. CURLcode Curl_open(struct Curl_easy **curl);
  30. CURLcode Curl_init_userdefined(struct Curl_easy *data);
  31. void Curl_freeset(struct Curl_easy *data);
  32. CURLcode Curl_uc_to_curlcode(CURLUcode uc);
  33. CURLcode Curl_close(struct Curl_easy **datap); /* opposite of curl_open() */
  34. CURLcode Curl_connect(struct Curl_easy *, bool *async, bool *protocol_connect);
  35. void Curl_disconnect(struct Curl_easy *data,
  36. struct connectdata *, bool dead_connection);
  37. CURLcode Curl_setup_conn(struct Curl_easy *data,
  38. bool *protocol_done);
  39. void Curl_free_request_state(struct Curl_easy *data);
  40. CURLcode Curl_parse_login_details(const char *login, const size_t len,
  41. char **userptr, char **passwdptr,
  42. char **optionsptr);
  43. const struct Curl_handler *Curl_builtin_scheme(const char *scheme);
  44. bool Curl_is_ASCII_name(const char *hostname);
  45. CURLcode Curl_idnconvert_hostname(struct Curl_easy *data,
  46. struct hostname *host);
  47. void Curl_free_idnconverted_hostname(struct hostname *host);
  48. #define CURL_DEFAULT_PROXY_PORT 1080 /* default proxy port unless specified */
  49. #define CURL_DEFAULT_HTTPS_PROXY_PORT 443 /* default https proxy port unless
  50. specified */
  51. #ifdef CURL_DISABLE_VERBOSE_STRINGS
  52. #define Curl_verboseconnect(x,y) Curl_nop_stmt
  53. #else
  54. void Curl_verboseconnect(struct Curl_easy *data, struct connectdata *conn);
  55. #endif
  56. #ifdef CURL_DISABLE_PROXY
  57. #define CONNECT_PROXY_SSL() FALSE
  58. #else
  59. #define CONNECT_PROXY_SSL()\
  60. (conn->http_proxy.proxytype == CURLPROXY_HTTPS &&\
  61. !conn->bits.proxy_ssl_connected[sockindex])
  62. #define CONNECT_FIRSTSOCKET_PROXY_SSL()\
  63. (conn->http_proxy.proxytype == CURLPROXY_HTTPS &&\
  64. !conn->bits.proxy_ssl_connected[FIRSTSOCKET])
  65. #define CONNECT_SECONDARYSOCKET_PROXY_SSL()\
  66. (conn->http_proxy.proxytype == CURLPROXY_HTTPS &&\
  67. !conn->bits.proxy_ssl_connected[SECONDARYSOCKET])
  68. #endif /* !CURL_DISABLE_PROXY */
  69. #endif /* HEADER_CURL_URL_H */