Skip to content

Releases: mikemiles-dev/netflow_parser

v0.5.1

27 Jan 23:58
02285a4
Compare
Choose a tag to compare
  • Reworked NetflowParseError. Added a Partial Type.
  • Added ability to parse only allowed_versions.
  • V9, IPFix, Datanumber Code cleanup.
  • Added benchmarking.

v0.5.0

19 Dec 23:27
bc92640
Compare
Choose a tag to compare
  • Typos in documentation fixed.
  • Added cargo-fuzz for fuzzing.
  • Uncovered area in V9 that could cause panic.

v0.4.9

09 Dec 23:15
9d6dea5
Compare
Choose a tag to compare
  • Added FlowStartMilliseconds, FlowEndMilliseconds

v0.4.8

12 Oct 22:45
b88a19b
Compare
Choose a tag to compare
  • Now Parsing IPFix Mac Addresses correctly.

v0.4.7

23 Sep 04:18
963a14d
Compare
Choose a tag to compare
  • Added src_mac and dst_mac to NetflowCommonFlowSet to help identify devices on V9, IPFix.

v0.4.6

20 Sep 14:36
d3f2c2c
Compare
Choose a tag to compare
  • Added NetflowParser function parse_bytes_as_netflow_common_flowsets. Will allow the caller to gather all flowsets from all NetflowPacket into a single Vec of NetflowCommonFlowSet.

v0.4.4

19 Sep 05:22
1dc9a09
Compare
Choose a tag to compare
  • Fix Readme example packets.
  • Optimized IPFix, V9 NetflowCommon lookup.
  • DataNumbers can now be downcast into actual data types: (u8, u16, i32, u32, u64, u128).

v0.4.3

17 Sep 14:17
0373ad3
Compare
Choose a tag to compare
  • Fixed bug in NetflowCommon where ProtocolType was never set.
  • Minor Readme Changes.

v0.4.2

16 Sep 21:00
0471ad7
Compare
Choose a tag to compare
  • Increased coverage.
  • Reworked Readme.

v0.4.1

16 Sep 03:40
045cfdd
Compare
Choose a tag to compare
  • Added NetflowCommon structure. This acts as a helper for common Netflow Fields (like src_ip, src_port, etc).
  • V5, V7 SysUpTime, First, Last times now u32 from Duration.
  • IPFix export time u32 from Duration.