Stop connection attempts if interrupted
If the interruptor is interrupted, every network call will fail, but the retry-on-error mechanism must also be stopped.
This commit is contained in:
parent
739ff9dce0
commit
6a27062f48
1 changed files with 6 additions and 0 deletions
|
@ -234,6 +234,12 @@ connect_to_server(struct sc_server *server, uint32_t attempts, sc_tick delay) {
|
|||
|
||||
net_close(socket);
|
||||
}
|
||||
|
||||
if (sc_intr_is_interrupted(&server->intr)) {
|
||||
// Stop immediately
|
||||
break;
|
||||
}
|
||||
|
||||
if (attempts) {
|
||||
sc_mutex_lock(&server->mutex);
|
||||
sc_tick deadline = sc_tick_now() + delay;
|
||||
|
|
Loading…
Reference in a new issue