mirror of
https://github.com/sigmasternchen/CFloor
synced 2025-03-15 12:28:53 +00:00
I think we need a delay
This commit is contained in:
parent
04c5fb04bd
commit
d8593d5e72
1 changed files with 3 additions and 0 deletions
|
@ -63,6 +63,9 @@ void* copyFromSslToFd(void* data) {
|
|||
break;
|
||||
} else if (error == SSL_ERROR_WANT_READ || error == SSL_ERROR_WANT_WRITE) {
|
||||
debug("ssl: trying again");
|
||||
|
||||
usleep(10000);
|
||||
|
||||
continue;
|
||||
} else {
|
||||
warn("ssl: connection had an error");
|
||||
|
|
Loading…
Reference in a new issue