(_)
| 1082 | transport, self, sslctx_2, server_side=True)) |
| 1083 | |
| 1084 | def cb(_): |
| 1085 | try: |
| 1086 | tr = fut.result() |
| 1087 | except Exception as ex: |
| 1088 | super_.connection_lost(ex) |
| 1089 | else: |
| 1090 | super_.connection_made(tr) |
| 1091 | fut.add_done_callback(cb) |
| 1092 | |
| 1093 | def server_protocol_factory(): |
nothing calls this directly
no test coverage detected