2001-10-01 07:26:21 -04:00
|
|
|
#ifndef __CONNECT_H
|
|
|
|
#define __CONNECT_H
|
2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-06-29 07:21:05 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2001-10-01 04:59:17 -04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2010-06-04 18:29:09 -04:00
|
|
|
* Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2001-10-01 04:59:17 -04:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
2004-06-29 07:21:05 -04:00
|
|
|
*
|
2001-10-01 04:59:17 -04:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2001-10-01 04:59:17 -04:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2001-10-01 04:59:17 -04:00
|
|
|
|
2009-07-09 17:47:24 -04:00
|
|
|
#include "nonblock.h" /* for curlx_nonblock(), formerly Curl_nonblock() */
|
2001-10-31 03:44:11 -05:00
|
|
|
|
2002-08-12 05:43:20 -04:00
|
|
|
CURLcode Curl_is_connected(struct connectdata *conn,
|
2004-06-29 07:21:05 -04:00
|
|
|
int sockindex,
|
2002-08-12 05:43:20 -04:00
|
|
|
bool *connected);
|
|
|
|
|
2001-10-01 04:59:17 -04:00
|
|
|
CURLcode Curl_connecthost(struct connectdata *conn,
|
2008-02-07 17:25:04 -05:00
|
|
|
const struct Curl_dns_entry *host, /* connect to
|
|
|
|
this */
|
2004-03-09 17:52:50 -05:00
|
|
|
curl_socket_t *sockconn, /* not set if error */
|
2004-06-24 03:43:48 -04:00
|
|
|
Curl_addrinfo **addr, /* the one we used */
|
2008-02-07 17:25:04 -05:00
|
|
|
bool *connected); /* truly connected? */
|
2003-05-01 09:37:05 -04:00
|
|
|
|
2008-02-07 17:25:04 -05:00
|
|
|
/* generic function that returns how much time there's left to run, according
|
|
|
|
to the timeouts set */
|
|
|
|
long Curl_timeleft(struct connectdata *conn,
|
|
|
|
struct timeval *nowp,
|
|
|
|
bool duringconnect);
|
|
|
|
|
2004-06-30 05:22:48 -04:00
|
|
|
#define DEFAULT_CONNECT_TIMEOUT 300000 /* milliseconds == five minutes */
|
|
|
|
|
2008-05-12 17:43:24 -04:00
|
|
|
/*
|
|
|
|
* Used to extract socket and connectdata struct for the most recent
|
|
|
|
* transfer on the given SessionHandle.
|
|
|
|
*
|
2010-09-05 18:02:54 -04:00
|
|
|
* The returned socket will be CURL_SOCKET_BAD in case of failure!
|
2008-05-12 17:43:24 -04:00
|
|
|
*/
|
2010-09-05 18:02:54 -04:00
|
|
|
curl_socket_t Curl_getconnectinfo(struct SessionHandle *data,
|
|
|
|
struct connectdata **connp);
|
2009-05-07 16:00:44 -04:00
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
/* When you run a program that uses the Windows Sockets API, you may
|
|
|
|
experience slow performance when you copy data to a TCP server.
|
|
|
|
|
|
|
|
http://support.microsoft.com/kb/823764
|
|
|
|
|
|
|
|
Work-around: Make the Socket Send Buffer Size Larger Than the Program Send
|
|
|
|
Buffer Size
|
|
|
|
|
|
|
|
*/
|
|
|
|
void Curl_sndbufset(curl_socket_t sockfd);
|
|
|
|
#else
|
|
|
|
#define Curl_sndbufset(y)
|
|
|
|
#endif
|
|
|
|
|
2010-06-07 10:53:31 -04:00
|
|
|
void Curl_updateconninfo(struct connectdata *conn, curl_socket_t sockfd);
|
2010-06-04 18:29:09 -04:00
|
|
|
|
2001-10-01 04:59:17 -04:00
|
|
|
#endif
|