modified: src/client.rs

modified:   src/server.rs
This commit is contained in:
Michael Wain 2024-08-25 18:45:16 +03:00
parent 5831be033b
commit fbb594de97
2 changed files with 6 additions and 2 deletions

View File

@ -16,9 +16,10 @@ use crate::udp::{UDPVpnPacket, UDPVpnHandshake, UDPSerializable};
fn configure_routes() {
let ip_output = Command::new("ip")
.arg("addr")
.arg("-4")
.arg("address")
.arg("add")
.arg("10.8.0.2/24")
.arg("10.66.66.2/32")
.arg("dev")
.arg("tun0")
.output()
@ -32,6 +33,8 @@ fn configure_routes() {
let link_output = Command::new("ip")
.arg("link")
.arg("set")
.arg("mtu")
.arg("1420")
.arg("up")
.arg("dev")
.arg("tun0")

View File

@ -108,6 +108,7 @@ pub async fn server_mode(server_config: ServerConfiguration) {
loop {
if let Ok((len, addr)) = sock_rec.recv_from(&mut buf).await {
info!("There is packet!");
let mut mp = addrs_lp.lock().await;
let plp = peers_lp.lock().await;
match buf.first() {