On Tuesday, 23 May 2023 10:37:19 PDT Yauheni Pervenenka via Interest wrote:
> In more details I need to get correct progress from my localhost tcp
> server, I mean to get progress when tcp server read data from socket, but
> now I can write 8MB using QTCPSocket to server but server read nothing fro
On Wednesday, 24 May 2023 00:04:31 PDT Yauheni Pervenenka via Interest wrote:
> Hi, Thiago, thanks for your reply, attached server file, attached logs,
> wireshark dumps, you can see that server just get notification while 65536
> receive buffer is no full, in wireshark dump sended 8MB and received
On Tuesday, 23 May 2023 12:28:43 PDT Yauheni Pervenenka via Interest wrote:
> const auto writeToSocket = [&](){
> const auto written = tcpSocket.write(QByteArray(8192, '1'));
> qDebug() << "Sending " << written << " bytes";
> };
> QObject::connect(&tcpSocket, &QIODevice
Thiago, thanks but I am not sure that there is any problem on sender side
it is simple test tcp client
#include
#include
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
QTcpSocket tcpSocket;
const auto writeToSocket = [&](){
const auto written = tcpSocket.w
On Tuesday, 23 May 2023 10:37:19 PDT Yauheni Pervenenka via Interest wrote:
> In more details I need to get correct progress from my localhost tcp
> server, I mean to get progress when tcp server read data from socket, but
> now I can write 8MB using QTCPSocket to server but server read nothing fro
In more details I need to get correct progress from my localhost tcp
server, I mean to get progress when tcp server read data from socket, but
now I can write 8MB using QTCPSocket to server but server read nothing from
socket and system ack's every 8192 message
On Tue, May 23, 2023 at 8:29 PM Yauh
Hi, Thiago, thanks for your reply, yep you are right but unfortunately I
need to change TCP window scale option for TCP window size, I need that
window size will be 65536, but with scale it can be
ReceiveBufferSizeSocketOption * 2^14
On Tue, May 23, 2023 at 7:30 PM Thiago Macieira
wrote:
> On Tu
On Tuesday, 23 May 2023 09:06:05 PDT Yauheni Pervenenka via Interest wrote:
> Hi, community
> Is it possible to change the TCP window size for qtcpsocket?
https://doc.qt.io/qt-6/qabstractsocket.html#setSocketOption
Maybe QAbstractSocket::ReceiveBufferSizeSocketOption will do what you want.
--
Th
Hi, community
Is it possible to change the TCP window size for qtcpsocket?
___
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest