merge main into boringtun-merge

This commit is contained in:
Jett Chen 2023-11-08 19:15:42 +08:00
parent 759311e4f4
commit f1649ce3b2
39 changed files with 3145 additions and 239 deletions

View file

@ -1,13 +1,11 @@
use std::{io::Error, net::Ipv4Addr};
use fehler::throws;
use std::io::Error;
use std::net::Ipv4Addr;
use tun::TunInterface;
#[test]
#[throws]
fn test_create() {
TunInterface::new()?;
}
fn test_create() { TunInterface::new()?; }
#[test]
#[throws]