(self)
| 8 | self.tags = ['default', 'safe', 'ssl', 'tls'] |
| 9 | |
| 10 | def configure(self): |
| 11 | self.match_all_service_names(True) |
| 12 | self.require_ssl(True) |
| 13 | |
| 14 | async def run(self, service): |
| 15 | if service.protocol == 'tcp' and service.secure: |
nothing calls this directly
no test coverage detected