1// Copyright 2024 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
45//! Netstack3 core TCP.
6//!
7//! This crate contains the TCP implementation for netstack3.
89#![no_std]
10#![warn(missing_docs, unreachable_patterns, clippy::useless_conversion, clippy::redundant_clone)]
1112extern crate fakealloc as alloc;
1314#[path = "."]
15mod internal {
16pub(super) mod base;
17pub(super) mod buffer;
18pub(super) mod congestion;
19pub(super) mod counters;
20pub(super) mod rtt;
21pub(super) mod seq_ranges;
22pub(super) mod socket;
23pub(super) mod state;
24pub(super) mod uninstantiable;
25}
2627pub use internal::base::{
28 BufferSizes, ConnectionError, SocketOptions, TcpState, DEFAULT_FIN_WAIT2_TIMEOUT,
29};
30pub use internal::buffer::{Buffer, BufferLimits, IntoBuffers, ReceiveBuffer, SendBuffer};
31pub use internal::counters::{
32 CombinedTcpCounters, TcpCountersWithSocket, TcpCountersWithoutSocket,
33};
34pub use internal::socket::accept_queue::ListenerNotifier;
35pub use internal::socket::isn::IsnGenerator;
36pub use internal::socket::{
37 AcceptError, BindError, BoundInfo, ConnectError, ConnectionInfo, DemuxState,
38 DualStackDemuxIdConverter, DualStackIpExt, Ipv6Options, Ipv6SocketIdToIpv4DemuxIdConverter,
39 ListenError, NoConnection, OriginalDestinationError, SetDeviceError, SetReuseAddrError,
40 SocketAddr, SocketInfo, Sockets, TcpApi, TcpBindingsContext, TcpBindingsTypes, TcpContext,
41 TcpDemuxContext, TcpDualStackContext, TcpIpTransportContext, TcpSocketId, TcpSocketSet,
42 TcpSocketState, TcpTimerId, UnboundInfo, WeakTcpSocketId,
43};
4445/// TCP test utilities.
46#[cfg(any(test, feature = "testutils"))]
47pub mod testutil {
48pub use crate::internal::buffer::testutil::{
49 ClientBuffers, ProvidedBuffers, RingBuffer, TestSendBuffer, WriteBackClientBuffers,
50 };
51}