|
@@ -19,6 +19,8 @@ mod sixlowpan;
|
|
|
|
|
|
#[cfg(feature = "proto-igmp")]
|
|
|
mod igmp;
|
|
|
+#[cfg(feature = "socket-tcp")]
|
|
|
+mod tcp;
|
|
|
#[cfg(any(feature = "socket-udp", feature = "socket-dns"))]
|
|
|
mod udp;
|
|
|
|
|
@@ -1111,47 +1113,6 @@ impl InterfaceInner {
|
|
|
address.is_unicast() && !self.is_broadcast_v4(address)
|
|
|
}
|
|
|
|
|
|
- #[cfg(feature = "socket-tcp")]
|
|
|
- pub(crate) fn process_tcp<'frame>(
|
|
|
- &mut self,
|
|
|
- sockets: &mut SocketSet,
|
|
|
- ip_repr: IpRepr,
|
|
|
- ip_payload: &'frame [u8],
|
|
|
- ) -> Option<Packet<'frame>> {
|
|
|
- let (src_addr, dst_addr) = (ip_repr.src_addr(), ip_repr.dst_addr());
|
|
|
- let tcp_packet = check!(TcpPacket::new_checked(ip_payload));
|
|
|
- let tcp_repr = check!(TcpRepr::parse(
|
|
|
- &tcp_packet,
|
|
|
- &src_addr,
|
|
|
- &dst_addr,
|
|
|
- &self.caps.checksum
|
|
|
- ));
|
|
|
-
|
|
|
- for tcp_socket in sockets
|
|
|
- .items_mut()
|
|
|
- .filter_map(|i| tcp::Socket::downcast_mut(&mut i.socket))
|
|
|
- {
|
|
|
- if tcp_socket.accepts(self, &ip_repr, &tcp_repr) {
|
|
|
- return tcp_socket
|
|
|
- .process(self, &ip_repr, &tcp_repr)
|
|
|
- .map(|(ip, tcp)| Packet::new(ip, IpPayload::Tcp(tcp)));
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if tcp_repr.control == TcpControl::Rst
|
|
|
- || ip_repr.dst_addr().is_unspecified()
|
|
|
- || ip_repr.src_addr().is_unspecified()
|
|
|
- {
|
|
|
- // Never reply to a TCP RST packet with another TCP RST packet. We also never want to
|
|
|
- // send a TCP RST packet with unspecified addresses.
|
|
|
- None
|
|
|
- } else {
|
|
|
- // The packet wasn't handled by a socket, send a TCP RST packet.
|
|
|
- let (ip, tcp) = tcp::Socket::rst_reply(&ip_repr, &tcp_repr);
|
|
|
- Some(Packet::new(ip, IpPayload::Tcp(tcp)))
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
#[cfg(feature = "medium-ethernet")]
|
|
|
fn dispatch<Tx>(
|
|
|
&mut self,
|