small bugfix
This commit is contained in:
parent
74ad55bde5
commit
3c01686b56
@ -10,10 +10,7 @@ use interproto::protocols::ip::{translate_ipv4_to_ipv6, translate_ipv6_to_ipv4};
|
|||||||
use ipnet::{IpNet, Ipv4Net, Ipv6Net};
|
use ipnet::{IpNet, Ipv4Net, Ipv6Net};
|
||||||
use nix::unistd::Uid;
|
use nix::unistd::Uid;
|
||||||
use rfc6052::{embed_ipv4_addr_unchecked, extract_ipv4_addr_unchecked};
|
use rfc6052::{embed_ipv4_addr_unchecked, extract_ipv4_addr_unchecked};
|
||||||
use std::{
|
use std::io::{Read, Write};
|
||||||
io::{Read, Write},
|
|
||||||
net::{Ipv4Addr, Ipv6Addr},
|
|
||||||
};
|
|
||||||
|
|
||||||
use crate::common::packet_handler::handle_packet;
|
use crate::common::packet_handler::handle_packet;
|
||||||
|
|
||||||
@ -124,7 +121,7 @@ pub async fn main() {
|
|||||||
},
|
},
|
||||||
) {
|
) {
|
||||||
// Write the packet if we get one back from the handler functions
|
// Write the packet if we get one back from the handler functions
|
||||||
tun.write(&output).unwrap();
|
tun.write_all(&output).unwrap();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user