diff --git a/src/packet/protocols/icmpv6.rs b/src/packet/protocols/icmpv6.rs index 75ebff6..6242c8b 100644 --- a/src/packet/protocols/icmpv6.rs +++ b/src/packet/protocols/icmpv6.rs @@ -42,6 +42,7 @@ where T: From>, { /// Construct a new ICMPv6 packet from raw bytes + #[allow(dead_code)] pub fn new_from_bytes( bytes: &[u8], source_address: Ipv6Addr, diff --git a/src/packet/protocols/tcp.rs b/src/packet/protocols/tcp.rs index 1413c20..5c0244a 100644 --- a/src/packet/protocols/tcp.rs +++ b/src/packet/protocols/tcp.rs @@ -58,6 +58,7 @@ impl TcpPacket { } // Set a new source + #[allow(dead_code)] pub fn set_source(&mut self, source: SocketAddr) -> Result<(), PacketError> { // Ensure the source and destination addresses are the same type if source.is_ipv4() != self.destination.is_ipv4() { @@ -74,6 +75,7 @@ impl TcpPacket { } // Set a new destination + #[allow(dead_code)] pub fn set_destination(&mut self, destination: SocketAddr) -> Result<(), PacketError> { // Ensure the source and destination addresses are the same type if self.source.is_ipv4() != destination.is_ipv4() { @@ -113,6 +115,7 @@ where T: From>, { /// Construct a new TCP packet from bytes + #[allow(dead_code)] pub fn new_from_bytes( bytes: &[u8], source_address: IpAddr, diff --git a/src/packet/protocols/udp.rs b/src/packet/protocols/udp.rs index 21eebfa..dfe7c7e 100644 --- a/src/packet/protocols/udp.rs +++ b/src/packet/protocols/udp.rs @@ -37,6 +37,7 @@ impl UdpPacket { } // Set a new source + #[allow(dead_code)] pub fn set_source(&mut self, source: SocketAddr) -> Result<(), PacketError> { // Ensure the source and destination addresses are the same type if source.is_ipv4() != self.destination.is_ipv4() { @@ -53,6 +54,7 @@ impl UdpPacket { } // Set a new destination + #[allow(dead_code)] pub fn set_destination(&mut self, destination: SocketAddr) -> Result<(), PacketError> { // Ensure the source and destination addresses are the same type if self.source.is_ipv4() != destination.is_ipv4() { @@ -84,6 +86,7 @@ where T: From>, { /// Construct a new UDP packet from bytes + #[allow(dead_code)] pub fn new_from_bytes( bytes: &[u8], source_address: IpAddr,