diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-12-20 13:06:26 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-12-20 20:30:38 +0100 |
commit | 377471f387c6639882fd8bd66a9e7b8e8341843d (patch) | |
tree | f7aec57b02a0e21e2954e7852d2a8d867787be20 /lib/urldata.h | |
parent | dfdac61522c7d660f884ec7a663dedb2d69d16a8 (diff) | |
download | curl-377471f387c6639882fd8bd66a9e7b8e8341843d.tar.gz |
FTP: move FTP-specific struct field to ftpc_conn
"wait_data_conn" was added to the connectionbits in commit c834213ad5 for
handling active FTP connections but as it is purely FTP specific and now
only ever accessed by ftp.c I moved it into the FTP connection struct.
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index 822412d05..be7b1e320 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -411,9 +411,6 @@ struct ConnectBits { bool do_more; /* this is set TRUE if the ->curl_do_more() function is supposed to be called, after ->curl_do() */ - - bool wait_data_conn; /* this is set TRUE if data connection is waited */ - bool tcpconnect[2]; /* the TCP layer (or similar) is connected, this is set the first time on the first connect function call */ bool protoconnstart;/* the protocol layer has STARTED its operation after |