Merge pull request #288 from emanuele-f/termination_fix

Terminate n2n as soon as the stop command is received
This commit is contained in:
Luca Deri 2020-07-01 14:04:39 +02:00 committed by GitHub
commit 73fa50a37d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1947,6 +1947,9 @@ int run_edge_loop(n2n_edge_t * eee, int *keep_running) {
/* Read a cooked socket from the internet socket. Writes on the TAP
* socket. */
readFromMgmtSocket(eee, keep_running);
if(!(*keep_running))
break;
}
#ifndef WIN32