Port Address 443

This commit is contained in:
2018-07-28 11:05:26 +02:00
parent a207716b27
commit 6c35622ef1
2 changed files with 2 additions and 2 deletions

2
CppNet

Submodule CppNet updated: 5a61a165c4...28bdd489d0

View File

@ -270,7 +270,7 @@ int main() {
try {
Socket *socket = server.accept();
clientnum++;
thread *t = new thread(client_handler, socket, clientnum, server.getSocketPort() == 4443);
thread *t = new thread(client_handler, socket, clientnum, server.getSocketPort() == 443);
} catch (char *msg) {
// Nothing
}