smb-msg 0.10.4

SMB Messages and structures for `smb-rs`
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# SMB Messages

This crate contains SMB-specific messages and structures,
that are used by the SMB protocol.

Mostly, it contains SMB messages (like SMB2 Headers, SMB2 Requests & Responses, etc.).
It also contains additional structures that are used by SMB specifically
(for example, DFS referrals), but common structures (such as GUID) are found in the `smb-types` crate.

> This crate is a part of the `smb-rs` project

## Usage

This crate is meant to be used with anyone who wants to implement SMB-related functionality in Rust.
See the documentation of the crate for more information.

Configure the features to your use case: use `server`, `client`, or `both`.