updated packages

This commit is contained in:
Jett Chen 2024-05-18 23:03:56 +08:00
parent abf1101484
commit 807dffa3be
4 changed files with 72 additions and 9 deletions

View file

@ -48,8 +48,8 @@ fn test_set_get_ipv6() {
let addr = Ipv6Addr::new(1, 1, 1, 1, 1, 1, 1, 1);
tun.set_ipv6_addr(addr)?;
// let result = tun.ipv6_addr()?;
// assert_eq!(addr, result);
let result = tun.ipv6_addr()?;
assert_eq!(addr, result);
}
#[test]