diff options
Diffstat (limited to 'plugins/FTPFileYM/curl/lib/url.h')
| -rw-r--r-- | plugins/FTPFileYM/curl/lib/url.h | 10 | 
1 files changed, 3 insertions, 7 deletions
diff --git a/plugins/FTPFileYM/curl/lib/url.h b/plugins/FTPFileYM/curl/lib/url.h index a026e90e85..418413c484 100644 --- a/plugins/FTPFileYM/curl/lib/url.h +++ b/plugins/FTPFileYM/curl/lib/url.h @@ -7,7 +7,7 @@   *                            | (__| |_| |  _ <| |___   *                             \___|\___/|_| \_\_____|   * - * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.   *   * This software is licensed as described in the file COPYING, which   * you should have received as part of this distribution. The terms @@ -37,7 +37,7 @@ CURLcode Curl_close(struct SessionHandle *data); /* opposite of curl_open() */  CURLcode Curl_connect(struct SessionHandle *, struct connectdata **,                        bool *async, bool *protocol_connect);  CURLcode Curl_do(struct connectdata **, bool *done); -CURLcode Curl_do_more(struct connectdata *, bool *completed); +CURLcode Curl_do_more(struct connectdata *, int *completed);  CURLcode Curl_done(struct connectdata **, CURLcode, bool premature);  CURLcode Curl_disconnect(struct connectdata *, bool dead_connection);  CURLcode Curl_protocol_connect(struct connectdata *conn, bool *done); @@ -45,6 +45,7 @@ CURLcode Curl_protocol_connecting(struct connectdata *conn, bool *done);  CURLcode Curl_protocol_doing(struct connectdata *conn, bool *done);  CURLcode Curl_setup_conn(struct connectdata *conn,                           bool *protocol_done); +void Curl_free_request_state(struct SessionHandle *data);  int Curl_protocol_getsock(struct connectdata *conn,                            curl_socket_t *socks, @@ -65,11 +66,6 @@ void Curl_getoff_all_pipelines(struct SessionHandle *data,  void Curl_close_connections(struct SessionHandle *data); -/* Called on connect, and if there's already a protocol-specific struct -   allocated for a different connection, this frees it that it can be setup -   properly later on. */ -void Curl_reset_reqproto(struct connectdata *conn); -  #define CURL_DEFAULT_PROXY_PORT 1080 /* default proxy port unless specified */  #define CURL_DEFAULT_SOCKS5_GSSAPI_SERVICE "rcmd" /* default socks5 gssapi                                                       service */  | 
