|
@@ -1,6 +1,5 @@
|
|
|
use super::*;
|
|
|
use crate::phy::Medium;
|
|
|
-use crate::wire::EthernetFrame;
|
|
|
use std::os::unix::io::{AsRawFd, RawFd};
|
|
|
use std::{io, mem};
|
|
|
|
|
@@ -48,11 +47,7 @@ impl RawSocketDesc {
|
|
|
}
|
|
|
|
|
|
pub fn interface_mtu(&mut self) -> io::Result<usize> {
|
|
|
- // SIOCGIFMTU returns the IP MTU (typically 1500 bytes.)
|
|
|
- // smoltcp counts the entire Ethernet packet in the MTU, so add the Ethernet header size to it.
|
|
|
- let ip_mtu =
|
|
|
- ifreq_ioctl(self.lower, &mut self.ifreq, imp::SIOCGIFMTU).map(|mtu| mtu as usize)?;
|
|
|
- Ok(ip_mtu + EthernetFrame::<&[u8]>::header_len())
|
|
|
+ ifreq_ioctl(self.lower, &mut self.ifreq, imp::SIOCGIFMTU).map(|mtu| mtu as usize)
|
|
|
}
|
|
|
|
|
|
pub fn bind_interface(&mut self) -> io::Result<()> {
|