(
&self,
callback: Option<PyObjectRef>,
vm: &VirtualMachine,
)
| 1654 | |
| 1655 | #[pymethod] |
| 1656 | fn set_servername_callback( |
| 1657 | &self, |
| 1658 | callback: Option<PyObjectRef>, |
| 1659 | vm: &VirtualMachine, |
| 1660 | ) -> PyResult<()> { |
| 1661 | // Alias for set_sni_callback |
| 1662 | self.set_sni_callback(callback, vm) |
| 1663 | } |
| 1664 | |
| 1665 | #[pygetset] |
| 1666 | fn security_level(&self) -> i32 { |
nothing calls this directly
no test coverage detected