Save ClientHello data from PyObjectRef for potential connection recreation
(&self, bytes_data: &[u8])
| 2666 | |
| 2667 | /// Save ClientHello data from PyObjectRef for potential connection recreation |
| 2668 | pub(crate) fn save_client_hello_from_bytes(&self, bytes_data: &[u8]) { |
| 2669 | *self.client_hello_buffer.lock() = Some(bytes_data.to_vec()); |
| 2670 | } |
| 2671 | |
| 2672 | /// Get the extracted SNI name from resolver |
| 2673 | pub(crate) fn get_extracted_sni_name(&self) -> Option<String> { |
no test coverage detected