mirror of
https://github.com/weyne85/rustdesk.git
synced 2025-10-29 17:00:05 +00:00
update IPv4 check and add IPv6 check in whitelist
Signed-off-by: Xerxes-2 <dspxue@gmail.com>
This commit is contained in:
@@ -632,10 +632,7 @@ impl Connection {
|
||||
.is_none()
|
||||
&& whitelist
|
||||
.iter()
|
||||
.filter(|x| match IpCidr::from_str(x) {
|
||||
Ok(cidr) => cidr.contains(addr.ip()),
|
||||
Err(_) => false,
|
||||
})
|
||||
.filter(|x| IpCidr::from_str(x).map_or(false, |y| y.contains(addr.ip())))
|
||||
.next()
|
||||
.is_none()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user