| 97 | |
| 98 | |
| 99 | VGLTransReceiver::~VGLTransReceiver(void) |
| 100 | { |
| 101 | deadYet = true; |
| 102 | listenMutex.lock(); |
| 103 | if(listenSocket) listenSocket->close(); |
| 104 | listenMutex.unlock(); |
| 105 | if(thread) { thread->stop(); delete thread; thread = NULL; } |
| 106 | } |
| 107 | |
| 108 | |
| 109 | void VGLTransReceiver::listen(unsigned short port_) |