d5f461d0bb5df1f5ec9f476556f3bcea9faaf639
[platform/upstream/curl.git] / docs / libcurl / opts / CURLOPT_OPENSOCKETFUNCTION.3
1 .\" **************************************************************************
2 .\" *                                  _   _ ____  _
3 .\" *  Project                     ___| | | |  _ \| |
4 .\" *                             / __| | | | |_) | |
5 .\" *                            | (__| |_| |  _ <| |___
6 .\" *                             \___|\___/|_| \_\_____|
7 .\" *
8 .\" * Copyright (C) 1998 - 2014, 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 http://curl.haxx.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 .\" **************************************************************************
22 .\"
23 .TH CURLOPT_OPENSOCKETFUNCTION 3 "16 Jun 2014" "libcurl 7.37.0" "curl_easy_setopt options"
24 .SH NAME
25 CURLOPT_OPENSOCKETFUNCTION \- set callback for opening sockets
26 .SH SYNOPSIS
27 .nf
28 #include <curl/curl.h>
29
30 typedef enum  {
31   CURLSOCKTYPE_IPCXN,  /* socket created for a specific IP connection */
32   CURLSOCKTYPE_ACCEPT, /* socket created by accept() call */
33   CURLSOCKTYPE_LAST    /* never use */
34 } curlsocktype;
35
36 struct curl_sockaddr {
37   int family;
38   int socktype;
39   int protocol;
40   unsigned int addrlen;
41   struct sockaddr addr;
42 };
43
44 curl_socket_t opensocket_callback(void *clientp,
45                                   curlsocktype purpose,
46                                   struct curl_sockaddr *address);
47
48 CURLcode curl_easy_setopt(CURL *handle, CURLOPT_OPENSOCKETFUNCTION, opensocket_callback);
49 .SH DESCRIPTION
50 Pass a pointer to your callback function, which should match the prototype
51 shown above.
52
53 This callback function gets called by libcurl instead of the \fIsocket(2)\fP
54 call. The callback's \fIpurpose\fP argument identifies the exact purpose for
55 this particular socket: \fICURLSOCKTYPE_IPCXN\fP is for IP based connections
56 and \fICURLSOCKTYPE_ACCEPT\fP is for sockets created after accept() - such as
57 when doing active FTP. Future versions of libcurl may support more
58 purposes.
59
60 The \fIclientp\fP pointer contains whatever user-defined value set using the
61 \fICURLOPT_OPENSOCKETDATA(3)\fP function.
62
63 The callback gets the resolved peer address as the \fIaddress\fP argument and
64 is allowed to modify the address or refuse to connect completely. The callback
65 function should return the newly created socket or \fICURL_SOCKET_BAD\fP in
66 case no connection could be established or another error was detected. Any
67 additional \fIsetsockopt(2)\fP calls can of course be done on the socket at
68 the user's discretion.  A \fICURL_SOCKET_BAD\fP return value from the callback
69 function will signal an unrecoverable error to libcurl and it will return
70 \fICURLE_COULDNT_CONNECT\fP from the function that triggered this callback.
71 This return code can be used for IP address blacklisting.
72
73 If you want to pass in a socket with an already established connection, pass
74 the socket back with this callback and then use
75 \fICURLOPT_SOCKOPTFUNCTION(3)\fP to signal that it already is connected.
76 .SH DEFAULT
77 The default behavior is the equivalent of this:
78 .nf
79    return socket(addr->family, addr->socktype, addr->protocol);
80 .fi
81 .SH PROTOCOLS
82 All
83 .SH EXAMPLE
84 .SH AVAILABILITY
85 Added in 7.17.1.
86 .SH RETURN VALUE
87 Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
88 .SH "SEE ALSO"
89 .BR CURLOPT_OPENSOCKETDATA "(3), " CURLOPT_SOCKOPTFUNCTION "(3), "
90 .BR CURLOPT_CLOSESOCKETFUNCTION "(3), "