use ;
use crateTlsClientUpgrader;
use crate;
/*
IMAP
Case1 (143):
TCP
Read(Greeting)
a1 STARTTLS
TLS
a2 LOGIN xx yy
Case2 (993):
TCP
TLS
Read(Greeting)
a1 LOGIN xx yy
e.g. https://github.com/bk-rs/async-stream-tls-upgrader/blob/master/demos/async-net/src/imap_client.rs
*/
pub type ImapClientInnerStream<S, SU> = ;