QTcpSocket¶
The
QTcpSocket
class provides a TCP socket. More…

Inherited by: QSslSocket
Detailed Description¶
TCP (Transmission Control Protocol) is a reliable, stream-oriented, connection-oriented transport protocol. It is especially well suited for continuous transmission of data.
QTcpSocket
is a convenience subclass ofQAbstractSocket
that allows you to establish a TCP connection and transfer streams of data. See theQAbstractSocket
documentation for details.Note
TCP sockets cannot be opened in
Unbuffered
mode.
-
class
QTcpSocket
([parent=None])¶ - param parent
QObject
Creates a
QTcpSocket
object in stateUnconnectedState
.parent
is passed on to theQObject
constructor.See also