(self)
| 114 | self.stream_server.stop() |
| 115 | |
| 116 | def closeConnections(self): |
| 117 | self.log.debug("Closing all connection: %s" % len(self.connections)) |
| 118 | for connection in self.connections[:]: |
| 119 | connection.close("Close all connections") |
| 120 | |
| 121 | def handleIncomingConnection(self, sock, addr): |
| 122 | if config.offline: |