(&self)
| 2650 | |
| 2651 | #[pymethod] |
| 2652 | fn pending(&self) -> i32 { |
| 2653 | let stream = self.connection.read(); |
| 2654 | unsafe { sys::SSL_pending(stream.ssl().as_ptr()) } |
| 2655 | } |
| 2656 | |
| 2657 | #[pymethod] |
| 2658 | fn shared_ciphers(&self, vm: &VirtualMachine) -> Option<PyListRef> { |
nothing calls this directly
no test coverage detected