(self, msg, streaming=False)
| 38 | self.responded = False # Responded to the request |
| 39 | |
| 40 | def send(self, msg, streaming=False): |
| 41 | if not self.connection.closed: |
| 42 | self.connection.send(msg, streaming) |
| 43 | |
| 44 | def sendRawfile(self, file, read_bytes): |
| 45 | if not self.connection.closed: |