From edb841adb1bac0934ea719cc1b7b6d9437bdfd8d Mon Sep 17 00:00:00 2001 From: Dennis Schwerdel Date: Wed, 12 May 2021 23:48:13 +0200 Subject: [PATCH] Imports --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index fb62e7e..dc6925b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -46,7 +46,7 @@ use tokio::runtime::Runtime; use std::{ fs::{self, File, Permissions}, io::{self, Write}, - net::{Ipv4Addr, UdpSocket}, + net::Ipv4Addr, os::unix::fs::PermissionsExt, path::Path, process, @@ -60,7 +60,7 @@ use crate::{ crypto::Crypto, device::{AsyncTunTapDevice, TunTapDevice, Type}, engine::common::GenericCloud, - net::{AsyncNetSocket, NetSocket}, + net::NetSocket, oldconfig::OldConfigFile, payload::Protocol, util::SystemTimeSource,