-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
> Hi I have been reading about QtThread and there seems to be a lot
> of discussion about how to correctly use this class. i.e. should
> developers derive from QtThread or provide an QObject and move this
> object to a thread. The examples provided w
Oh, thanks! You really helped me!
I implement WebSocket's server, so one client may connect on secure mode, and
another - on non-secure mode.
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest
Hi all! Can a QSslSocket to work as QTcpSocket at unencrypted
connenctions? I don't want inherit from QTcpSocket for unencrypted
connenctions and from QSslSocket for encrypted connenctions, and have
two classes with duplicated code, so is it possible to use QSslSocket
for both cases?
And what about