fluereflow 0.3.2

Customized flow feature inspired by netflow and cicflowmeter.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// This file is part of the fluereflow library, which provides data structures and functions for working with NetFlow data.
// It exports the FluereFlow, FluereHeader, and FluereRecord data structures, which represent different aspects of NetFlow data.
mod types;

// The FluereFlow data structure represents a single flow of network traffic.
// It includes fields for the source and destination IP addresses, the source and destination ports, the protocol, and other information about the flow.
pub use types::FluereFlow;
// The FluereHeader data structure represents the header of a NetFlow record.
// It includes fields for the version of the NetFlow protocol, the count of records in the flow, and other information about the flow.
pub use types::FluereHeader;
// The FluereRecord data structure represents a single record in a NetFlow flow.
// It includes fields for the source and destination IP addresses, the source and destination ports, the protocol, and other information about the record.
pub use types::FluereRecord;