1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

//! Client library for [`fidl_fuchsia_hardware_network`]. Contains helpers
//! for sending frames to and receiving frames from L2/L3 network devices.

#![deny(missing_docs)]
pub mod client;
pub mod error;
pub mod port_slab;
pub mod session;

pub use client::{Client, DevicePortEvent, PortStatus};
pub use error::{Error, Result};
pub use port_slab::PortSlab;
pub use session::{Buffer, Config, DeviceInfo, Port, Session, Task};