netstack3_tcp/
lib.rs

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.
4
5//! Netstack3 core TCP.
6//!
7//! This crate contains the TCP implementation for netstack3.
8
9#![no_std]
10#![warn(missing_docs, unreachable_patterns, clippy::useless_conversion, clippy::redundant_clone)]
11
12extern crate fakealloc as alloc;
13
14#[path = "."]
15mod internal {
16    pub(super) mod base;
17    pub(super) mod buffer;
18    pub(super) mod congestion;
19    pub(super) mod counters;
20    pub(super) mod rtt;
21    pub(super) mod sack_scoreboard;
22    pub(super) mod seq_ranges;
23    pub(super) mod socket;
24    pub(super) mod state;
25    pub(super) mod uninstantiable;
26}
27
28pub use internal::base::{
29    BufferSizes, ConnectionError, SocketOptions, TcpState, DEFAULT_FIN_WAIT2_TIMEOUT,
30};
31pub use internal::buffer::{Buffer, BufferLimits, IntoBuffers, ReceiveBuffer, SendBuffer};
32pub use internal::counters::{
33    CombinedTcpCounters, TcpCountersWithSocket, TcpCountersWithoutSocket,
34};
35pub use internal::socket::accept_queue::ListenerNotifier;
36pub use internal::socket::isn::IsnGenerator;
37pub use internal::socket::{
38    AcceptError, BindError, BoundInfo, ConnectError, ConnectionInfo, DemuxState,
39    DualStackDemuxIdConverter, DualStackIpExt, Ipv6Options, Ipv6SocketIdToIpv4DemuxIdConverter,
40    ListenError, NoConnection, OriginalDestinationError, SetDeviceError, SetReuseAddrError,
41    SocketAddr, SocketInfo, Sockets, TcpApi, TcpBindingsContext, TcpBindingsTypes, TcpContext,
42    TcpDemuxContext, TcpDualStackContext, TcpIpTransportContext, TcpSocketId, TcpSocketSet,
43    TcpSocketState, TcpTimerId, UnboundInfo, WeakTcpSocketId,
44};
45
46/// TCP test utilities.
47#[cfg(any(test, feature = "testutils"))]
48pub mod testutil {
49    pub use crate::internal::buffer::testutil::{
50        ClientBuffers, ProvidedBuffers, RingBuffer, TestSendBuffer, WriteBackClientBuffers,
51    };
52}