The QTcpSocket class provides a TCP socket. More...
Header: | #include <QTcpSocket> |
CMake: | find_package(Qt6 COMPONENTS Network REQUIRED) target_link_libraries(mytarget PRIVATE Qt6::Network) |
qmake: | QT += network |
Inherits: | QAbstractSocket |
Inherited By: |
Note: All functions in this class are reentrant.
QTcpSocket(QObject *parent = nullptr) | |
virtual | ~QTcpSocket() |
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 of QAbstractSocket that allows you to establish a TCP connection and transfer streams of data. See the QAbstractSocket documentation for details.
Note: TCP sockets cannot be opened in QIODevice::Unbuffered mode.
See also QTcpServer, QUdpSocket, QNetworkAccessManager, Fortune Server Example, Fortune Client Example, Threaded Fortune Server Example, Blocking Fortune Client Example, Loopback Example, and Torrent Example.
Creates a QTcpSocket object in state UnconnectedState
.
parent is passed on to the QObject constructor.
See also socketType().
[virtual]
QTcpSocket::~QTcpSocket()
Destroys the socket, closing the connection if necessary.
See also close().
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qtcpsocket.html