| 101 | |
| 102 | |
| 103 | class ConservativeStrategy(TlsStrategy): |
| 104 | def should_intercept(self, server_address: connection.Address) -> bool: |
| 105 | return InterceptionResult.FAILURE not in self.history[server_address] |
| 106 | |
| 107 | |
| 108 | class ProbabilisticStrategy(TlsStrategy): |