(&mut self)
| 553 | |
| 554 | impl Drop for HandshakeVmGuard { |
| 555 | fn drop(&mut self) { |
| 556 | HANDSHAKE_VM.with(|cell| cell.set(None)); |
| 557 | HANDSHAKE_SSL_PTR.with(|cell| cell.set(None)); |
| 558 | } |
| 559 | } |
| 560 | |
| 561 | // Get SSL pointer - either from thread-local (during handshake) or from connection |