- Timestamp:
- Mar 9, 2009, 9:38:54 AM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/bncnetqueryudp.cpp ¶
r1732 r1756 31 31 _udpSocket = 0; 32 32 _eventLoop = new QEventLoop(this); 33 34 _keepAlive = new char[12]; 35 _keepAlive[0] = 128; 36 _keepAlive[1] = 97; 37 for (int jj = 2; jj <= 11; jj++) { 38 _keepAlive[jj] = 0; 39 } 33 40 } 34 41 … … 38 45 delete _eventLoop; 39 46 delete _udpSocket; 47 delete _keepAlive; 40 48 } 41 49 … … 50 58 //////////////////////////////////////////////////////////////////////////// 51 59 void bncNetQueryUdp::slotKeepAlive() { 60 if (_udpSocket) { 61 _udpSocket->writeDatagram(_keepAlive, 12, _address, _port); 62 } 63 QTimer::singleShot(30000, this, SLOT(slotKeepAlive())); 52 64 } 53 65 … … 138 150 139 151 _udpSocket->writeDatagram(rtpbuffer, 12 + reqStr.size(), _address, _port); 152 QTimer::singleShot(30000, this, SLOT(slotKeepAlive())); 140 153 } 141 154 } -
TabularUnified trunk/BNC/bncnetqueryudp.h ¶
r1720 r1756 23 23 QHostAddress _address; 24 24 int _port; 25 char* _keepAlive; 25 26 }; 26 27
Note:
See TracChangeset
for help on using the changeset viewer.