capsules_extra/net/udp/
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 driver;
6pub mod udp_port_table;
7pub mod udp_recv;
8pub mod udp_send;
9
10pub use self::driver::UDPDriver;
11pub use self::driver::DRIVER_NUM;
12
13// Reexport the exports of the [`udp`] module, to avoid redundant
14// module paths (e.g. `capsules::net::udp::udp::UDPHeader`)
15mod udp;
16pub use udp::UDPHeader;