Questions tagged [qtcpsocket]

The QTcpSocket class, part of the Qt framework, provides a TCP socket.

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.

The official Qt documentation can be found here for Qt 4.8 and here for Qt 5.

301 questions
-2
votes
1 answer

Qt Authentication users with QTcpServer (with username and password)

I want to write a chat program with login page. I want to send request from client to server with username and password, then server receives, verifies and then responds to client. Can anyone please guide me of what QT class should I use or can tell…
1 2 3
20
21