Merge pull request #8 from jonthekiller/jonthekiller-patch-10

Change binding to 0.0.0.0
This commit is contained in:
jonthekiller 2020-08-02 18:28:30 +02:00 committed by GitHub
commit 88c920445d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -293,7 +293,7 @@ class CommunicationManager implements CallbackListener, UsageInformationAble {
});
});
//TODO check if port is closed
$this->socket->listen($socketPort, $this->maniaControl->getServer()->ip);
$this->socket->listen($socketPort, '0.0.0.0');
Logger::log("[CommunicationManager] Socket " . $this->maniaControl->getServer()->ip . ":" . $this->socket->getPort() . " Successfully created!");
} catch (ConnectionException $e) {
@ -315,4 +315,4 @@ class CommunicationManager implements CallbackListener, UsageInformationAble {
$communication->tick();
}
}
}
}