| 109 | } |
| 110 | |
| 111 | void Socket::Close(){ |
| 112 | if(bound){ |
| 113 | SocketManager::DestroySocket(this); |
| 114 | } |
| 115 | |
| 116 | if(handleCount == 0) |
| 117 | delete this; |
| 118 | } |
| 119 | |
| 120 | void Socket::Watch(FilesystemWatcher& watcher, int events){ |
| 121 | assert(!"Socket::Watch called from socket base"); |
nothing calls this directly
no test coverage detected