Bug 36655
| Summary: | [Qt] WebSocket should abort on certificate errors | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Simon Hausmann <hausmann> |
| Component: | New Bugs | Assignee: | QtWebKit Unassigned <webkit-qt-unassigned> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | Normal | CC: | laszlo.gombos, yael |
| Priority: | P2 | Keywords: | Qt |
| Version: | 528+ (Nightly build) | ||
| Hardware: | All | ||
| OS: | All | ||
Simon Hausmann
From SocketStreamHandleQt.cpp:
void SocketStreamHandlePrivate::socketSslErrors(const QList<QSslError>&)
{
// FIXME: based on http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol-68#page-15
// we should abort on certificate errors.
// We don't abort while this is still work in progress.
static_cast<QSslSocket*>(m_socket)->ignoreSslErrors();
}
This bug is a reminder that we should fix this.
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Yael
*** This bug has been marked as a duplicate of bug 44769 ***