MCPcopy Create free account
hub / github.com/dannagle/PacketSender / TCPThread

Method TCPThread

src/tcpthread.cpp:28–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26
27
28TCPThread::TCPThread(int socketDescriptor, QObject *parent)
29 : QThread(parent), socketDescriptor(socketDescriptor)
30{
31
32 init();
33 sendFlag = false;
34 incomingPersistent = false;
35 sendPacket.clear();
36 insidePersistent = false;
37 isSecure = false;
38 packetReply.clear();
39 consoleMode = false;
40
41
42}
43
44TCPThread::TCPThread(Packet sendPacket, QObject *parent)
45 : QThread(parent), sendPacket(sendPacket)

Callers

nothing calls this directly

Calls 1

clearMethod · 0.45

Tested by

no test coverage detected