blob: 907274fb08705e868ec66721363dce8f2e4d2096 [file] [log] [blame]
// 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.
//! Fuchsia netdevice client library
#![deny(missing_docs)]
pub mod client;
pub mod error;
pub mod session;
pub use client::{Client, DevicePortEvent, PortStatus};
pub use error::Error;
pub use session::{Buffer, Config, DeviceInfo, Port, Session, Task};