(self)
| 761 | |
| 762 | @ATMT.condition(RECEIVED_SETUP_ANDX_REQUEST) |
| 763 | def wait_for_next_request(self): |
| 764 | if self.authenticated: |
| 765 | self.vprint( |
| 766 | "User authenticated %s!" % (self.GUEST_LOGIN and " as guest" or "") |
| 767 | ) |
| 768 | raise self.AUTHENTICATED() |
| 769 | else: |
| 770 | raise self.NEGOTIATED() |
| 771 | |
| 772 | @ATMT.state() |
| 773 | def AUTHENTICATED(self): |
nothing calls this directly
no test coverage detected