CURLOPT_OPENSOCKETFUNCTION.3 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  9. .\" *
  10. .\" * This software is licensed as described in the file COPYING, which
  11. .\" * you should have received as part of this distribution. The terms
  12. .\" * are also available at https://curl.se/docs/copyright.html.
  13. .\" *
  14. .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. .\" * copies of the Software, and permit persons to whom the Software is
  16. .\" * furnished to do so, under the terms of the COPYING file.
  17. .\" *
  18. .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. .\" * KIND, either express or implied.
  20. .\" *
  21. .\" * SPDX-License-Identifier: curl
  22. .\" *
  23. .\" **************************************************************************
  24. .\"
  25. .TH CURLOPT_OPENSOCKETFUNCTION 3 "16 Jun 2014" libcurl libcurl
  26. .SH NAME
  27. CURLOPT_OPENSOCKETFUNCTION \- callback for opening socket
  28. .SH SYNOPSIS
  29. .nf
  30. #include <curl/curl.h>
  31. typedef enum {
  32. CURLSOCKTYPE_IPCXN, /* socket created for a specific IP connection */
  33. } curlsocktype;
  34. struct curl_sockaddr {
  35. int family;
  36. int socktype;
  37. int protocol;
  38. unsigned int addrlen;
  39. struct sockaddr addr;
  40. };
  41. curl_socket_t opensocket_callback(void *clientp,
  42. curlsocktype purpose,
  43. struct curl_sockaddr *address);
  44. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_OPENSOCKETFUNCTION, opensocket_callback);
  45. .SH DESCRIPTION
  46. Pass a pointer to your callback function, which should match the prototype
  47. shown above.
  48. This callback function gets called by libcurl instead of the \fIsocket(2)\fP
  49. call. The callback's \fIpurpose\fP argument identifies the exact purpose for
  50. this particular socket. \fICURLSOCKTYPE_IPCXN\fP is for IP based connections
  51. and is the only purpose currently used in libcurl. Future versions of libcurl
  52. may support more purposes.
  53. The \fIclientp\fP pointer contains whatever user-defined value set using the
  54. \fICURLOPT_OPENSOCKETDATA(3)\fP function.
  55. The callback gets the resolved peer address as the \fIaddress\fP argument and
  56. is allowed to modify the address or refuse to connect completely. The callback
  57. function should return the newly created socket or \fICURL_SOCKET_BAD\fP in
  58. case no connection could be established or another error was detected. Any
  59. additional \fIsetsockopt(2)\fP calls can of course be done on the socket at
  60. the user's discretion. A \fICURL_SOCKET_BAD\fP return value from the callback
  61. function will signal an unrecoverable error to libcurl and it will return
  62. \fICURLE_COULDNT_CONNECT\fP from the function that triggered this callback.
  63. This return code can be used for IP address block listing.
  64. If you want to pass in a socket with an already established connection, pass
  65. the socket back with this callback and then use
  66. \fICURLOPT_SOCKOPTFUNCTION(3)\fP to signal that it already is connected.
  67. .SH DEFAULT
  68. The default behavior is the equivalent of this:
  69. .nf
  70. return socket(addr->family, addr->socktype, addr->protocol);
  71. .fi
  72. .SH PROTOCOLS
  73. All
  74. .SH EXAMPLE
  75. .nf
  76. /* make libcurl use the already established socket 'sockfd' */
  77. static curl_socket_t opensocket(void *clientp,
  78. curlsocktype purpose,
  79. struct curl_sockaddr *address)
  80. {
  81. curl_socket_t sockfd;
  82. sockfd = *(curl_socket_t *)clientp;
  83. /* the actual externally set socket is passed in via the OPENSOCKETDATA
  84. option */
  85. return sockfd;
  86. }
  87. static int sockopt_callback(void *clientp, curl_socket_t curlfd,
  88. curlsocktype purpose)
  89. {
  90. /* This return code was added in libcurl 7.21.5 */
  91. return CURL_SOCKOPT_ALREADY_CONNECTED;
  92. }
  93. curl = curl_easy_init();
  94. if(curl) {
  95. /* libcurl will internally think that you connect to the host
  96. * and port that you specify in the URL option. */
  97. curl_easy_setopt(curl, CURLOPT_URL, "http://99.99.99.99:9999");
  98. /* call this function to get a socket */
  99. curl_easy_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, opensocket);
  100. curl_easy_setopt(curl, CURLOPT_OPENSOCKETDATA, &sockfd);
  101. /* call this function to set options for the socket */
  102. curl_easy_setopt(curl, CURLOPT_SOCKOPTFUNCTION, sockopt_callback);
  103. res = curl_easy_perform(curl);
  104. curl_easy_cleanup(curl);
  105. }
  106. .fi
  107. .SH AVAILABILITY
  108. Added in 7.17.1.
  109. .SH RETURN VALUE
  110. Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
  111. .SH "SEE ALSO"
  112. .BR CURLOPT_OPENSOCKETDATA "(3), " CURLOPT_SOCKOPTFUNCTION "(3), "
  113. .BR CURLOPT_CLOSESOCKETFUNCTION "(3), "