mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-03 11:40:42 +02:00
don't respond to http other than /status
This commit is contained in:
parent
d99dcf5450
commit
24acf7584a
1 changed files with 4 additions and 1 deletions
|
@ -313,7 +313,10 @@ bool IceServer::handleHTTPRequest(HTTPConnection* connection, const QUrl& url, b
|
||||||
? 1 : 0;
|
? 1 : 0;
|
||||||
|
|
||||||
connection->respond(HTTPConnection::StatusCode200, QByteArray::number(statusNumber));
|
connection->respond(HTTPConnection::StatusCode200, QByteArray::number(statusNumber));
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue