nfswolf 1.0.0

Pure-Rust NFS (v2/v3/v4) security toolkit: recon, analysis, export-escape, FUSE mount, and an interactive shell for authorized red-team and pentest work.
1
2
3
4
5
6
7
//! UDP RPC transport -- re-exports from the RPC crate.
//!
//! The implementation lives in `onc_rpc_client::transport::udp`.  This module
//! re-exports the public API so existing callers within the binary continue
//! to resolve through `crate::proto::udp::`.

pub(crate) use onc_rpc_client::transport::udp::{call_rpc_udp, probe_udp_rpc};