Lines Matching defs:connected
151 bool connected);
439 bool connected;
448 result = Curl_conn_connect(data, SECONDARYSOCKET, TRUE, &connected);
449 if(result || !connected)
483 static CURLcode AllowServerConnect(struct Curl_easy *data, bool *connected)
488 *connected = FALSE;
503 result = ReceivedServerConnect(data, connected);
507 if(*connected) {
1177 /* EPRT is disabled but we are connected to a IPv6 host, so we ignore the
1295 /* EPSV is disabled but we are connected to a IPv6 host, so we ignore the
1989 * the 'connected' set to FALSE and thus we are now awaiting a non-blocking
2436 bool connected;
2440 result = AllowServerConnect(data, &connected);
2444 if(!connected) {
2552 bool connected;
2554 result = AllowServerConnect(data, &connected);
2558 if(!connected) {
3551 * when we've issued a PASV command before and thus we have connected to a
3572 * connected.
3584 bool connected = FALSE;
3593 * connected to the remote host. When using proxy tunneling, this
3599 result = Curl_conn_connect(data, SECONDARYSOCKET, FALSE, &connected);
3653 connected back to us */
3728 bool *connected, /* connect status after PASV / PORT */
3752 *connected = Curl_conn_is_connected(data->conn, SECONDARYSOCKET);
3754 infof(data, "ftp_perform ends with SECONDARY: %d", *connected);
4271 static CURLcode ftp_dophase_done(struct Curl_easy *data, bool connected)
4277 if(connected) {
4290 else if(!connected)
4308 result = ftp_dophase_done(data, FALSE /* not connected */);
4332 bool connected = FALSE;
4345 &connected, /* have we connected after PASV/PORT */
4354 result = ftp_dophase_done(data, connected);