diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2011-01-05 14:09:53 +0100 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2011-01-05 14:09:53 +0100 |
| commit | d45ed0ecf5a92b35868b46943871dfa4ec14c7a2 (patch) | |
| tree | 8328226ec87b13745db8d6ae57c968d40a9004be | |
| parent | e21b103c3ee8eea0936a49863b3ad006e1d7ebb8 (diff) | |
SSH: acknowledge speedcheck
Check for speedcheck limits during the state machine traversals
| -rw-r--r-- | lib/ssh.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -2456,6 +2456,12 @@ static CURLcode ssh_easy_statemach(struct connectdata *conn, if(Curl_pgrsUpdate(conn)) return CURLE_ABORTED_BY_CALLBACK; + else { + struct timeval now = Curl_tvnow(); + result = Curl_speedcheck(data, now); + if(result) + return result; + } left = Curl_timeleft(data, NULL, duringconnect); if(left < 0) { |
