pub type Stream = Either<TcpStream, UnixStream>;
pub enum Stream { Left(TcpStream), Right(UnixStream), }