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

learn more… | top users | synonyms

1
vote
2answers
62 views

Why can't my code read the number of bytes available on a QTcpSocket? Ideas?

I have the following snippet of code in the body of a loop responsible for reading data from a QTcpSocket (nntp is a pointer to a QTcpSocket). std::vector<char> buffer; int bytesAvailable = ...
-1
votes
0answers
22 views

QDataStream does not set a quint16

I'm writing a software that involves communication using QTcpSockets. When I send a data for other QTcpSocket I follow the following block structure: Bytes number | QByteArray with data To process ...
0
votes
1answer
43 views

QSocketNotifier: socket notifiers cannot be disabled from another thread

Im aware the I cannot communicate with QTcpSocket between threads but I cannot find what Im doing wrong. As soon as I send data emitting signal to QTcpSocket which is in the other thread, ...
0
votes
2answers
23 views

QTcpSocket: multiple ReadyReads when sending large file

I want to send a 1MB file at 200KB/second (5 second transfer) using a QTcpSocket. The ReadyRead slot function first reads the file size (header), then starts a thread that blocks while reading ...
2
votes
1answer
33 views

Implementation of Qt's QTcpSocket ReadyRead signal

I want to know about Qt's implementation of QTcpSocket's ReadyRead signal. How is it implemented on Windows and on Linux? Using select(), poll(), epoll(), SIGIO or any other way? How does QTcpSocket ...
1
vote
0answers
35 views

Two way QTCPSocket File Transfer issue

I'm a bit stumped with this and don't have a whole lot of experience with file transfer so hopefully I'm just doing something daft. Anyway. The problem. I'm sending a file in chunks from my client to ...
0
votes
0answers
49 views

QTcpSocket memory leak

I wrote client-server application on Qt 4.8.3 (Ubuntu 12.04) and it works fine, but it has huge memory leak in server-side. Client sends OpenCV images and server processes them. Server has own ...
0
votes
0answers
60 views

QTcpSserver with a socket for TCP peer to peer connections

I'm developing a peer to peer chat client with a central registrar for a class I'm in. I've rewritten these programs a few times and I just want to know if I'm doing something wrong. Basically, my ...
1
vote
3answers
148 views

How to make sure that readyRead() signals from QTcpSocket can't be missed?

When using QTcpSocket to receive data, the signal to use is readyRead(), which signals that new data is available. However, when you are in the corresponding slot implementation to read the data, no ...
1
vote
0answers
68 views

QTcpSocket data never been seen… any ideas?

I'm trying to use Qt with C++ to build a basic IM client for a school networking project. I'm new to Qt and have only had one semester at C++ (but over 4 of programming in general, 2 of C, one of C++ ...
0
votes
0answers
26 views

How do to add QTcpSocket to shared library project

Using Qt 5.01 I'm trying to compile a shared QT library with a Tcp/Ip thread to commutate with another program. I'm able to load and debug the library under QT debugger. create the thread, ...
1
vote
1answer
69 views

TCP socket communications are being corrupted

I am trying to use a TCP server and connect to it with a QTcpSocket client. Most of the time, the server and client happen to be on the same machine, but this is not a requirement. What I am trying ...
0
votes
2answers
51 views

Strange character after tranfer file with QTcpSocket

I'm trying transfer a file using a QTcpSocket. The connection runs fine, my problem is when I try record the received bytes on a file. When I open the file there are some strange characteres on the ...
0
votes
1answer
89 views

QTcpSocket Receiving Data from server

Is it possible to read unknown form of data from a QTcpSocket ? I mean, I have a TCP client and server application. Both are using QDataStream to exchange the data packets successfully. If say any ...
0
votes
1answer
98 views

Send QDataStream through QTcpSocket or QSslSocket

I want to send serialized data through ssl or tcp socket. QIODevice::write doesn't send QDataStream but only char* and QByteArray. Is there a way I can send serialized data through socket? Or how ...
0
votes
2answers
98 views

Would handling each TCP connection in a separate thread improve latency?

I have an FTP server, implemented on top of QTcpServer and QTcpSocket. I take advantage of the signals and slots mechanism to support multiple TCP connections simultaneously, even though I have a ...
0
votes
1answer
100 views

Qt app crashes on deleting executed task

I have multithread server (inherits QTcpServer). When new connection appears, I create new task (inherits QRunnable), passing socket descriptor to constructor and push this task to QThreadpool (have 3 ...
2
votes
1answer
265 views

Qt QTcpSocket with QtConcurrent::run Needs Event Loop in Separate Thread

I have a web server in Qt that will read a very large ( ~1Gb ) file and return the data to the requestor through a QTcpSocket. This socket is created by the main server thread. I want to use ...
1
vote
1answer
56 views

Can a QTcpSocket release its descriptor

Is it possible for a QTcpSocket to release its descriptor so ownership over the socket can be transferred to another QTcpSocket object on a different thread, or to a QSslSocket, without ...
0
votes
0answers
46 views

QT client-server app works well with firefox, but not with other browsers

I have an app, that's used for creation some kind of a 'tunnel' on network. It receives data on client side, encrypts it and sends to the server side, which decrypts data and sends it further. It will ...
3
votes
1answer
102 views

Morph existing QTcpSocket to QSslSocket

Is it possible to create a new QSslSocket and for it to take ownership over the existing TCP connection, and the old QTcpSocket to be discarded, without interrupting or closing the TCP connection? I ...
0
votes
1answer
270 views

QThread and QTcpSocket [closed]

I did serious mistake when I was doing some project and now I have to re-program it from bottom.. I'm writing multi-threaded server which will handle connections, requests, etc.. But, when I created ...
0
votes
1answer
290 views

QTcpSocket receiving transfer

I'm having issues with receiving a transfer. QTcpSocket->readAll() not reads enough bytes when I'm sending to it. When I send like a 15k bytes, it reads only some part of it and then does nothing. ...
1
vote
0answers
140 views

QTcpSocket false connect to QTcpServer

Since some time I have been working with Qt (sorry for my english). I'm now working with QtNetwork. I need to create a client-server like system. The basic ideas are these: The IP's of both ...
1
vote
1answer
116 views

'Memory Full' while transferring large file using QTcpSocket

I'm trying to transfer a large file in a non-blocking fashion, by connecting bytesWritten to my function sendNextBlock. void AsynchronousRetrieveCommand::start() { connect(socket(), ...
0
votes
1answer
165 views

sending qimage over qtcpsocket: received only part of the data

i am creating an application where i need to send some images over tcp. the sending part is QImage image; image.load("image.png", "PNG"); image.setText("name", "color"); QByteArray ba; ...
2
votes
2answers
227 views

How to send a file along with its filename over QTCPSocket?

Is there any simple way to send a file to server with the filename included so that the filename in server and client are exactly the same? Here is my code Sender QString path = ...
0
votes
1answer
136 views

Qt mp3 file to datastream

My primary objective is to send a mp3 file over network using QDataStream, QTcpServer and QTcpSocket. But I have broken this task to smaller pieces. At first I need to get the mp3 file to the correct ...
0
votes
0answers
62 views

QtNetwok, Connexion success but write fails!! My handler is called too soon… Really Weird

The problem in my case is that my handler (connexionSuccess) for connected() is called before the result of waitForConnected... it's weird!! My soc.write is failiiiiing... I don't know why :S I write ...
0
votes
0answers
75 views

Best approach to obtain the port of a QTcpServer in a child process?

What is the best approach to retrieve the port number a QTcpServer in a child process is listening on, assuming we do not want to use fixed port numbers for our TCP servers? So far I have been ...
0
votes
1answer
75 views

QTcpServer crashes on close

I was programming a server, I programmed the service and a manager. When I stop the server with the UI Server Manager, the server calls a function called "stopServer()", that function contains the ...
1
vote
1answer
430 views

C++ Qt - QTcpSocket - File not found

I am using Qt and QTcpSocket to create a small chat client/server application. When I compile my code, the compiler returns the following error: main.cpp:3:22: fatal error: QTcpSocket: No such file ...
0
votes
2answers
383 views

QTcpSocket emits “Connection Refused Error” after few Successful connection?

I am designing an application for accessing a remote desktop using Qt creator. In order to get "Quit" Signal from the Remote desktop (after completing my purpose), i am using Tcpserver and Tcpsocket. ...
0
votes
1answer
383 views

Console Chat Using QTcpSocket and QTcpServer

I want to write a console chat program in qt framework.I have a problem with sending messages. Client sends messages to server but server doesn't take the messages until client program is closed.When ...
0
votes
1answer
231 views

Cannot recieve readyRead signal of QTcpSocket?

You send data across network with QTcpSocket, connect the readyRead signal with your data handler. But readyRead signal maybe not triggered. You could see the data arrived with Wireshark, but ...
1
vote
1answer
156 views

QtcpSocket without signals/slots

Is it possible to use QTcpSocket without using readyRead slots ? I tried this code for reading datas from a tcp server : QByteArray ba; forever { sck.waitForReadyRead(); ba.append( sck.readAll() ); ...
0
votes
0answers
211 views

QTCPSocket disconnect causes crash

I am having trouble with my QTCPServer. I have a serve that is receiving information from a socket(just header information), passing the header and information to a database thread, and passing the ...
0
votes
1answer
857 views

QTcpSocket client auto reconnect

I'm trying to write a piece of code that periodically tries to connect to the server using QTcpSocket until the server is up and ready. The client should also automatically and periodically try ...
0
votes
1answer
497 views

qt QML property binding not updating

I am continuously getting data for my application as it runs, but I am having a bit of trouble displaying the data once I have read it in and stored it in a map. When I try to display the data in the ...
0
votes
1answer
276 views

Qt QTcpSocket QByteArray/QString issues with special characters and proper syntax

I'm having trouble some special characters in Qt, the 2 being the quote and newline. I'm connecting to the server using telnet, and the server automatically puts quotes at the beginning and end of the ...
1
vote
1answer
840 views

How do I know which QTcpSocket emitted the readyRead() signal?

I've created a hello-world program to help me understand how QTcpServer and QTcpSocket work. In it the QTcpServer accepts new connections and connects their readyRead() signal to the ...
-1
votes
1answer
159 views

State of a QTcpSocket

I have a problem with the QTcpSocket library. I created two programs that communicate with the same client using the same socket connection. Unfortunately, doing in this way, if the programs write at ...
1
vote
1answer
619 views

The connect (in a QT project) doesn't work

I'm starting to create my first multithread application, using the QT libraries. Following the qt guide about QTcpServer and QTcpSocket, i wrote a server application that create the connection with ...
5
votes
3answers
2k views

QTcpSocket state always connected, even unplugging ethernet wire

I have a QTcpSocket and I am reading into a loop. Each time a full packet has been read, or there has been an error, I manually check the status of the socket inside the loop, with: while(true){ ...
4
votes
1answer
566 views

Reading a QTcpSocket

I had a socket connection with UNIX C++ sockets where, after connecting, I had a loop for reading byte by byte until I had the full msg. I know the first two bytes of the message I'm going to receive, ...
0
votes
2answers
2k views

Cannot create children for a parent that is in a different thread

I have a QThread defined in MyThread.cpp and .h. There I have a private QTcpSocket. class MyThread: public QThread { Q_OBJECT public: MyThread(); virtual ~MyThread(); public slots: ...
0
votes
2answers
284 views

QTcpSocket write an struct of data

I used to send an struct with C++ sockets, and now I'm trying to use QTcpSockets instead. This is the struct: const unsigned int uiMessageSize = 4; typedef struct { unsigned char uc_stx; ...
0
votes
1answer
68 views

Assigning QTcpSocket object

I have a class with QTcpSocket socket; as private member. Then, in class constructor I'm initialising with socket = new QTcpSocket(); When compiling, I'm getting error: error: no match for ...
0
votes
1answer
268 views

Multiple calls on QTcpSocket::write?

According to here http://doc-snapshot.qt-project.org/4.8/qiodevice.html Certain subclasses of QIODevice, such as QTcpSocket and QProcess, are asynchronous. For example, the first write call has ...
3
votes
1answer
1k views

PyQt QTcpServer: How to return data to multiple clients?

I am looking to create a QTcpServer using PyQt that can simultaneously return data to 2 or more clients. I assume that this will require threading. Using the threadedfortuneserver.py example as a ...

1 2