connect.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. #ifndef HEADER_CURL_CONNECT_H
  2. #define HEADER_CURL_CONNECT_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. * SPDX-License-Identifier: curl
  24. *
  25. ***************************************************************************/
  26. #include "curl_setup.h"
  27. #include "nonblock.h" /* for curlx_nonblock(), formerly Curl_nonblock() */
  28. #include "sockaddr.h"
  29. #include "timeval.h"
  30. CURLcode Curl_connecthost(struct Curl_easy *data,
  31. struct connectdata *conn,
  32. const struct Curl_dns_entry *host);
  33. /* generic function that returns how much time there's left to run, according
  34. to the timeouts set */
  35. timediff_t Curl_timeleft(struct Curl_easy *data,
  36. struct curltime *nowp,
  37. bool duringconnect);
  38. #define DEFAULT_CONNECT_TIMEOUT 300000 /* milliseconds == five minutes */
  39. /*
  40. * Used to extract socket and connectdata struct for the most recent
  41. * transfer on the given Curl_easy.
  42. *
  43. * The returned socket will be CURL_SOCKET_BAD in case of failure!
  44. */
  45. curl_socket_t Curl_getconnectinfo(struct Curl_easy *data,
  46. struct connectdata **connp);
  47. bool Curl_addr2string(struct sockaddr *sa, curl_socklen_t salen,
  48. char *addr, int *port);
  49. /*
  50. * Check if a connection seems to be alive.
  51. */
  52. bool Curl_connalive(struct Curl_easy *data, struct connectdata *conn);
  53. #ifdef USE_WINSOCK
  54. /* When you run a program that uses the Windows Sockets API, you may
  55. experience slow performance when you copy data to a TCP server.
  56. https://support.microsoft.com/kb/823764
  57. Work-around: Make the Socket Send Buffer Size Larger Than the Program Send
  58. Buffer Size
  59. */
  60. void Curl_sndbufset(curl_socket_t sockfd);
  61. #else
  62. #define Curl_sndbufset(y) Curl_nop_stmt
  63. #endif
  64. void Curl_updateconninfo(struct Curl_easy *data, struct connectdata *conn,
  65. curl_socket_t sockfd);
  66. void Curl_conninfo_remote(struct Curl_easy *data, struct connectdata *conn,
  67. curl_socket_t sockfd);
  68. void Curl_conninfo_local(struct Curl_easy *data, curl_socket_t sockfd,
  69. char *local_ip, int *local_port);
  70. void Curl_persistconninfo(struct Curl_easy *data, struct connectdata *conn,
  71. char *local_ip, int local_port);
  72. int Curl_closesocket(struct Curl_easy *data, struct connectdata *conn,
  73. curl_socket_t sock);
  74. /*
  75. * The Curl_sockaddr_ex structure is basically libcurl's external API
  76. * curl_sockaddr structure with enough space available to directly hold any
  77. * protocol-specific address structures. The variable declared here will be
  78. * used to pass / receive data to/from the fopensocket callback if this has
  79. * been set, before that, it is initialized from parameters.
  80. */
  81. struct Curl_sockaddr_ex {
  82. int family;
  83. int socktype;
  84. int protocol;
  85. unsigned int addrlen;
  86. union {
  87. struct sockaddr addr;
  88. struct Curl_sockaddr_storage buff;
  89. } _sa_ex_u;
  90. };
  91. #define sa_addr _sa_ex_u.addr
  92. /*
  93. * Create a socket based on info from 'conn' and 'ai'.
  94. *
  95. * Fill in 'addr' and 'sockfd' accordingly if OK is returned. If the open
  96. * socket callback is set, used that!
  97. *
  98. */
  99. CURLcode Curl_socket(struct Curl_easy *data,
  100. const struct Curl_addrinfo *ai,
  101. struct Curl_sockaddr_ex *addr,
  102. curl_socket_t *sockfd);
  103. /*
  104. * Curl_conncontrol() marks the end of a connection/stream. The 'closeit'
  105. * argument specifies if it is the end of a connection or a stream.
  106. *
  107. * For stream-based protocols (such as HTTP/2), a stream close will not cause
  108. * a connection close. Other protocols will close the connection for both
  109. * cases.
  110. *
  111. * It sets the bit.close bit to TRUE (with an explanation for debug builds),
  112. * when the connection will close.
  113. */
  114. #define CONNCTRL_KEEP 0 /* undo a marked closure */
  115. #define CONNCTRL_CONNECTION 1
  116. #define CONNCTRL_STREAM 2
  117. void Curl_conncontrol(struct connectdata *conn,
  118. int closeit
  119. #if defined(DEBUGBUILD) && !defined(CURL_DISABLE_VERBOSE_STRINGS)
  120. , const char *reason
  121. #endif
  122. );
  123. #if defined(DEBUGBUILD) && !defined(CURL_DISABLE_VERBOSE_STRINGS)
  124. #define streamclose(x,y) Curl_conncontrol(x, CONNCTRL_STREAM, y)
  125. #define connclose(x,y) Curl_conncontrol(x, CONNCTRL_CONNECTION, y)
  126. #define connkeep(x,y) Curl_conncontrol(x, CONNCTRL_KEEP, y)
  127. #else /* if !DEBUGBUILD || CURL_DISABLE_VERBOSE_STRINGS */
  128. #define streamclose(x,y) Curl_conncontrol(x, CONNCTRL_STREAM)
  129. #define connclose(x,y) Curl_conncontrol(x, CONNCTRL_CONNECTION)
  130. #define connkeep(x,y) Curl_conncontrol(x, CONNCTRL_KEEP)
  131. #endif
  132. CURLcode Curl_conn_socket_set(struct Curl_easy *data,
  133. struct connectdata *conn,
  134. int sockindex);
  135. CURLcode Curl_conn_socket_accepted_set(struct Curl_easy *data,
  136. struct connectdata *conn,
  137. int sockindex,
  138. curl_socket_t *s);
  139. #endif /* HEADER_CURL_CONNECT_H */