Send a file through a transport. Return an amount of sent bytes.
(self, transport, file, offset=0, count=None,
*, fallback=True)
| 421 | raise NotImplementedError |
| 422 | |
| 423 | async def sendfile(self, transport, file, offset=0, count=None, |
| 424 | *, fallback=True): |
| 425 | """Send a file through a transport. |
| 426 | |
| 427 | Return an amount of sent bytes. |
| 428 | """ |
| 429 | raise NotImplementedError |
| 430 | |
| 431 | async def start_tls(self, transport, protocol, sslcontext, *, |
| 432 | server_side=False, |
no outgoing calls