diff options
author | Gokhan Sengun <gokhansengun@gmail.com> | 2012-06-25 01:46:01 +0300 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-08-16 23:20:08 +0200 |
commit | 23ef5e4ba22386ccc43f99db1d0f4106dc603e80 (patch) | |
tree | 227f78e6398a7a02ad37ddd050ee965b4d77a4f5 /lib | |
parent | 44154e0733c2b6fcadaaf772dfd5c93792fb07cc (diff) |
ftp: active conn, allow application to set sockopt after accept() call
For active FTP connections, applications may need setting the sockopt after accept() call returns successful. This fix gives a call to the callback registered with CURL_SOCKOPTFUNCTION option. Also a new sock type - CURLSOCKTYPE_ACCEPT - is added. This type is to be passed to application callbacks with - purpose - parameter. Applications may use this parameter to distinguish between socket types.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ftp.c | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -348,6 +348,20 @@ static CURLcode AcceptServerConnect(struct connectdata *conn) } infof(data, "Connection accepted from server\n"); + if(data->set.fsockopt) { + int error = 0; + + /* activate callback for setting socket options */ + error = data->set.fsockopt(data->set.sockopt_client, + s, + CURLSOCKTYPE_ACCEPT); + + if(error) { + Curl_closesocket(conn, s); /* close the socket and bail out */ + return CURLE_ABORTED_BY_CALLBACK; + } + } + conn->sock[SECONDARYSOCKET] = s; curlx_nonblock(s, TRUE); /* enable non-blocking */ conn->sock_accepted[SECONDARYSOCKET] = TRUE; |