Qt Code:
void Thread::run(){ QTcpSocket sock; sock.setSocketDescriptor(socketDescriptor); while(1){ sock.write(ba); sock.waitForBytesWritten(1000); sleep(2); } }To copy to clipboard, switch view to plain text mode
Qt Code:
void Thread::run(){ QTcpSocket sock; sock.setSocketDescriptor(socketDescriptor); while(1){ sock.write(ba); sock.waitForBytesWritten(1000); sleep(2); } }To copy to clipboard, switch view to plain text mode
Bookmarks