capsules_extra/net/icmpv6/
mod.rs

1// Licensed under the Apache License, Version 2.0 or the MIT License.
2// SPDX-License-Identifier: Apache-2.0 OR MIT
3// Copyright Tock Contributors 2022.
4
5pub mod icmpv6_send;
6
7// Reexport the exports of the [`icmpv6`] module, to avoid redundant
8// module paths (e.g. `capsules::net::icmpv6::icmpv6::ICMP6Header`)
9mod icmpv6;
10pub use icmpv6::ICMP6Header;
11pub use icmpv6::ICMP6HeaderOptions;
12pub use icmpv6::ICMP6Type;