You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
use native_tls;
|
|
|
|
use stream::Stream;
|
|
use super::{Handshake, HandshakeResult};
|
|
|
|
pub struct TlsHandshake {
|
|
|
|
}
|
|
|
|
impl Handshale for TlsHandshake {
|
|
type Stream = Stream;
|
|
fn handshake(self) -> Result<HandshakeResult<Self>> {
|
|
}
|
|
}
|
|
|