(&self)
| 2505 | } |
| 2506 | #[pygetset] |
| 2507 | fn context(&self) -> PyRef<PySslContext> { |
| 2508 | self.ctx.read().clone() |
| 2509 | } |
| 2510 | #[pygetset(setter)] |
| 2511 | fn set_context(&self, value: PyRef<PySslContext>, vm: &VirtualMachine) -> PyResult<()> { |
| 2512 | // Get SSL pointer - use thread-local during handshake to avoid deadlock |