(self)
| 216 | TLSDispatcher.handle_write(self) |
| 217 | |
| 218 | def handle_close(self): |
| 219 | if self.isOutbound and not self.fullyEstablished: |
| 220 | knownnodes.decreaseRating(self.destination) |
| 221 | if self.fullyEstablished: |
| 222 | UISignalQueue.put(('updateNetworkStatusTab', (self.isOutbound, False, self.destination))) |
| 223 | if self.isOutbound: |
| 224 | Dandelion().maybeRemoveStem(self) |
| 225 | BMProto.handle_close(self) |
| 226 | |
| 227 | |
| 228 | class Socks5BMConnection(Socks5Connection, TCPConnection): |
nothing calls this directly
no test coverage detected