Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. TCP
Forum Updated to NodeBB v4.3 + New Features

TCP

Scheduled Pinned Locked Moved General and Desktop
2 Posts 2 Posters 745 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • H Offline
    H Offline
    houmingc
    wrote on 15 Dec 2014, 09:41 last edited by
    #1

    My server is not receiving data from my client.
    Don't understand what does seek() do and why need 2object out and block at the same time.

    Below is my code

    @

                socket.connectToHost(ServerIP,10010);
                qint16 CRC;
                unsigned char TCPdata[5];
                TCPdata[0]=0x20;
                TCPdata[1]=0x20;
                TCPdata[2]=0x00;
                CRC =ModbusCRC((unsigned char*)TCPdata,3);
    
    
    
                QByteArray block;
                QDataStream out(&block,QIODevice::WriteOnly);
                out.setVersion(QDataStream::Qt_5_0);
    
                out.device()->seek(0);
                out<<0x20<<DeviceNum<<0x00<<CRC;
    
               socket.writeData(block.data(),block.size());
    

    @

    1 Reply Last reply
    0
    • S Offline
      S Offline
      SGaist
      Lifetime Qt Champion
      wrote on 15 Dec 2014, 10:27 last edited by
      #2

      Hi,

      Please don't post the almost same question twice, closing this one

      "Duplicate":http://qt-project.org/forums/viewthread/50953/

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0

      2/2

      15 Dec 2014, 10:27

      • Login

      • Login or register to search.
      2 out of 2
      • First post
        2/2
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved