We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc39452 commit a49ae9eCopy full SHA for a49ae9e
src/socket.cpp
@@ -365,6 +365,8 @@ void CSocket::OnDataReceived()
365
use the signal/slot mechanism (i.e. we use messages for that).
366
*/
367
368
+ CHostAddress RecHostAddr;
369
+
370
// read block from network interface and query address of sender
371
uSockAddr UdpSocketAddr;
372
#ifdef _WIN32
src/socket.h
@@ -78,9 +78,6 @@ class CSocket : public QObject
78
QMutex Mutex;
79
80
CVector<uint8_t> vecbyRecBuf;
81
- CHostAddress RecHostAddr;
82
- QHostAddress SenderAddress;
83
- quint16 SenderPort;
84
85
CChannel* pChannel; // for client
86
CServer* pServer; // for server
0 commit comments