Skip to main content

starnix_modules_nmfs/
lib.rs

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.
4
5//! Implementation of Network Monitor File System (fuchsia_network_monitor_fs).
6//!
7//! fuchsia_network_monitor_fs is a Unix-compatible filesystem that receives
8//! properties of installed networks and communicates property updates to the
9//! Fuchsia Network Policy socket proxy.
10
11#![recursion_limit = "256"]
12
13mod fs;
14mod manager;
15
16pub use fs::*;
17pub use manager::*;