connect.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. #ifndef HEADER_CURL_CONNECT_H
  2. #define HEADER_CURL_CONNECT_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 1998 - 2014, 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 http://curl.haxx.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. #include "nonblock.h" /* for curlx_nonblock(), formerly Curl_nonblock() */
  26. #include "sockaddr.h"
  27. CURLcode Curl_is_connected(struct connectdata *conn,
  28. int sockindex,
  29. bool *connected);
  30. CURLcode Curl_connecthost(struct connectdata *conn,
  31. const struct Curl_dns_entry *host);
  32. /* generic function that returns how much time there's left to run, according
  33. to the timeouts set */
  34. long Curl_timeleft(struct SessionHandle *data,
  35. struct timeval *nowp,
  36. bool duringconnect);
  37. #define DEFAULT_CONNECT_TIMEOUT 300000 /* milliseconds == five minutes */
  38. #define HAPPY_EYEBALLS_TIMEOUT 200 /* milliseconds to wait between
  39. ipv4/ipv6 connection attempts */
  40. /*
  41. * Used to extract socket and connectdata struct for the most recent
  42. * transfer on the given SessionHandle.
  43. *
  44. * The returned socket will be CURL_SOCKET_BAD in case of failure!
  45. */
  46. curl_socket_t Curl_getconnectinfo(struct SessionHandle *data,
  47. struct connectdata **connp);
  48. #ifdef USE_WINSOCK
  49. /* When you run a program that uses the Windows Sockets API, you may
  50. experience slow performance when you copy data to a TCP server.
  51. http://support.microsoft.com/kb/823764
  52. Work-around: Make the Socket Send Buffer Size Larger Than the Program Send
  53. Buffer Size
  54. */
  55. void Curl_sndbufset(curl_socket_t sockfd);
  56. #else
  57. #define Curl_sndbufset(y) Curl_nop_stmt
  58. #endif
  59. void Curl_updateconninfo(struct connectdata *conn, curl_socket_t sockfd);
  60. void Curl_persistconninfo(struct connectdata *conn);
  61. int Curl_closesocket(struct connectdata *conn, curl_socket_t sock);
  62. /*
  63. * The Curl_sockaddr_ex structure is basically libcurl's external API
  64. * curl_sockaddr structure with enough space available to directly hold any
  65. * protocol-specific address structures. The variable declared here will be
  66. * used to pass / receive data to/from the fopensocket callback if this has
  67. * been set, before that, it is initialized from parameters.
  68. */
  69. struct Curl_sockaddr_ex {
  70. int family;
  71. int socktype;
  72. int protocol;
  73. unsigned int addrlen;
  74. union {
  75. struct sockaddr addr;
  76. struct Curl_sockaddr_storage buff;
  77. } _sa_ex_u;
  78. };
  79. #define sa_addr _sa_ex_u.addr
  80. /*
  81. * Create a socket based on info from 'conn' and 'ai'.
  82. *
  83. * Fill in 'addr' and 'sockfd' accordingly if OK is returned. If the open
  84. * socket callback is set, used that!
  85. *
  86. */
  87. CURLcode Curl_socket(struct connectdata *conn,
  88. const Curl_addrinfo *ai,
  89. struct Curl_sockaddr_ex *addr,
  90. curl_socket_t *sockfd);
  91. #ifdef CURLDEBUG
  92. /*
  93. * Curl_connclose() sets the bit.close bit to TRUE with an explanation.
  94. * Nothing else.
  95. */
  96. void Curl_conncontrol(struct connectdata *conn,
  97. bool closeit,
  98. const char *reason);
  99. #define connclose(x,y) Curl_conncontrol(x,TRUE, y)
  100. #define connkeep(x,y) Curl_conncontrol(x, FALSE, y)
  101. #else /* if !CURLDEBUG */
  102. #define connclose(x,y) (x)->bits.close = TRUE
  103. #define connkeep(x,y) (x)->bits.close = FALSE
  104. #endif
  105. #endif /* HEADER_CURL_CONNECT_H */