(self, domain, path, use_https=True)
| 391 | assert os.listdir(path) == [] |
| 392 | |
| 393 | def get_http_status(self, domain, path, use_https=True): |
| 394 | r = self.get_meta(domain, path, use_https, insecure=True) |
| 395 | return r.response['status'] |
| 396 | |
| 397 | def get_cert(self, domain, tls=None, ciphers=None): |
| 398 | return MDCertUtil.load_server_cert(self._httpd_addr, self.https_port, |