merge boringtun into burrow

This commit is contained in:
Conrad Kramer 2023-09-16 10:45:53 -07:00
parent e643d9dd41
commit 28af9003d0
39 changed files with 3122 additions and 228 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]