Commit some more work on on updating the websocket server to use wss.

This commit is contained in:
Ken Moore
2016-01-08 14:01:49 -05:00
parent 38321421c4
commit 262ddb637d
2 changed files with 29 additions and 10 deletions

View File

@@ -324,15 +324,15 @@ void WebSocket::EvaluateTcpMessage(){
//SSL signal handling
void WebSocket::nowEncrypted(){
//the socket/connection is now encrypted
qDebug() << "Socket now connected";
qDebug() << " - Socket now encrypted";
}
void WebSocket::peerError(const QSslError&){ //peerVerifyError() signal
qDebug() << "Peer Error:";
qDebug() << "Socket Peer Error:";
}
void WebSocket::SslError(const QList<QSslError> &err){ //sslErrors() signal
qDebug() << "SSL Errors:" << err.length();
qDebug() << "Socket SSL Errors:" << err.length();
}
// ======================