dcerpc 0.2.7

Pure-Rust DCE/RPC (MS-RPCE): hand-rolled NDR marshaling, PDUs, NTLMSSP sign+seal (packet privacy), TCP + SMB named-pipe transports, EPM, and SAMR/LSAT/DRSUAPI/SVCCTL/RRP/Netlogon/DCOM-WMI clients — no FFI
Documentation
1
2
3
4
5
6
7
8
//! NDR (Network Data Representation) marshaling.
//!
//! Extracted into the standalone [`ms-ndr`](https://crates.io/crates/ms-ndr) crate and
//! re-exported here so every interface module keeps using `crate::ndr::{NdrEncoder,
//! NdrDecoder}` unchanged. Decoder errors (`NdrError`) convert into [`crate::RpcError`]
//! via `?` (see the `From` impl in `lib.rs`).

pub use ms_ndr::{NdrDecoder, NdrEncoder, NdrError};