master: fix compile error

This commit is contained in:
Denis Drakhnia 2024-09-26 10:30:01 +03:00
parent 14aaacc453
commit 00233d3a10

View File

@ -27,7 +27,7 @@ use xash3d_protocol::{
server,
server::Region,
wrappers::Str,
Error as ProtocolError, ServerInfo,
Error as ProtocolError,
};
use crate::{
@ -35,6 +35,8 @@ use crate::{
stats::Stats,
};
type ServerInfo = xash3d_protocol::ServerInfo<Box<[u8]>>;
pub trait AddrExt: Sized + Eq + Hash + Display + Copy + ToSocketAddrs + ServerAddress {
type Ip: Eq + Hash + Display + Copy + FromStr;