From f2af721debd711f788870236ef9e0d8026a873f8 Mon Sep 17 00:00:00 2001 From: Sam Poder Date: Tue, 6 Jun 2023 20:51:06 +0200 Subject: [PATCH] Update tun/src/unix/linux/mod.rs This fixes an accidental change I made, sorry! --- tun/src/unix/linux/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tun/src/unix/linux/mod.rs b/tun/src/unix/linux/mod.rs index 07cf80b..8467731 100644 --- a/tun/src/unix/linux/mod.rs +++ b/tun/src/unix/linux/mod.rs @@ -4,7 +4,7 @@ use socket2::{Domain, SockAddr, Socket, Type}; use std::fs::OpenOptions; use std::io::{Error, Write}; use std::mem; -use std::net::{Ipv4Addr, Ipv6Addr, SocketAddrV4}; +use std::net::{Ipv4Addr, Ipv6Addr, SocketAddrV4, SocketAddrV6}; use std::os::fd::RawFd; use std::os::unix::io::{AsRawFd, FromRawFd, IntoRawFd};