(self)
| 237 | |
| 238 | @ATMT.state(initial=True) |
| 239 | def INITIAL(self): |
| 240 | self.vprint("Starting TLS client automaton.") |
| 241 | raise self.INIT_TLS_SESSION() |
| 242 | |
| 243 | @ATMT.ioevent(INITIAL, name="tls", as_supersocket="tlslink") |
| 244 | def _socket(self, fd): |
nothing calls this directly
no test coverage detected