use std::net::{IpAddr, Ipv4Addr};
#[derive(Debug, Clone, Copy)]
pub struct DnsServer {
pub ip: IpAddr,
}
const fn ip(a: u8, b: u8, c: u8, d: u8) -> DnsServer {
DnsServer { ip: IpAddr::V4(Ipv4Addr::new(a, b, c, d)) }
}
pub const DNS_SERVER_LI: [DnsServer; 8] = [
ip(8, 8, 8, 8), ip(1, 1, 1, 1), ip(223, 5, 5, 5), ip(208, 67, 222, 222), ip(9, 9, 9, 9), ip(1, 0, 0, 1), ip(114, 114, 114, 114), ip(180, 76, 76, 76), ];