default port - 42666

This commit is contained in:
MeexReay 2025-04-12 14:05:03 +03:00
parent 6ad49cb22a
commit 54e0b13ba7

View File

@ -6,16 +6,22 @@ pub trait RacStream: Read + Write + Unpin + Send + Sync + Debug {}
impl<T: Read + Write + Unpin + Send + Sync + Debug> RacStream for T {} impl<T: Read + Write + Unpin + Send + Sync + Debug> RacStream for T {}
pub fn connect(host: &str, ssl: bool) -> Result<Box<dyn RacStream>, Box<dyn Error>> { pub fn connect(host: &str, ssl: bool) -> Result<Box<dyn RacStream>, Box<dyn Error>> {
let host = if host.contains(":") {
host.to_string()
} else {
format!("{host}:42666")
};
Ok(if ssl { Ok(if ssl {
let ip: String = host.split_once(":") let ip: String = host.split_once(":")
.map(|o| o.0) .map(|o| o.0.to_string())
.unwrap_or(host).to_string(); .unwrap_or(host.clone());
Box::new(TlsConnector::builder() Box::new(TlsConnector::builder()
.danger_accept_invalid_certs(true) .danger_accept_invalid_certs(true)
.danger_accept_invalid_hostnames(true) .danger_accept_invalid_hostnames(true)
.build()? .build()?
.connect(&ip, connect(host, false)?)?) .connect(&ip, connect(&host, false)?)?)
} else { } else {
Box::new(TcpStream::connect(host)?) Box::new(TcpStream::connect(host)?)
}) })