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 ICMP Echo sockets.
6//!
7//! This crate contains the ICMP echo sockets 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 socket;
17}
1819pub use internal::socket::{
20 BoundSockets, IcmpEchoBindingsContext, IcmpEchoBindingsTypes, IcmpEchoBoundStateContext,
21 IcmpEchoContextMarker, IcmpEchoIpTransportContext, IcmpEchoSocketApi, IcmpEchoStateContext,
22 IcmpSocketId, IcmpSocketSet, IcmpSocketState, IcmpSocketTxMetadata, IcmpSockets,
23};