Helper: Update certificate statistics
(&self, stats: cert::CertStats)
| 2181 | |
| 2182 | /// Helper: Update certificate statistics |
| 2183 | fn update_cert_stats(&self, stats: cert::CertStats) { |
| 2184 | *self.x509_cert_count.write() += stats.total_certs; |
| 2185 | *self.ca_cert_count.write() += stats.ca_certs; |
| 2186 | } |
| 2187 | } |
| 2188 | |
| 2189 | impl Representable for PySSLContext { |
no test coverage detected