Skip to content

Commit

Permalink
Changes for Release 049 (#93)
Browse files Browse the repository at this point in the history
* Changes for Release 049

* fix test

---------

Co-authored-by: mikemiles-dev <michaelmileusnich@Michaels-MacBook-Air-2.local>
  • Loading branch information
mikemiles-dev and mikemiles-dev authored Dec 9, 2024
1 parent 9c4babe commit 9d6dea5
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "netflow_parser"
description = "Parser for Netflow Cisco V5, V7, V9, IPFIX"
version = "0.4.8"
version = "0.4.9"
edition = "2021"
authors = ["michael.mileusnich@gmail.com"]
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 3 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# 0.4.9
* Added FlowStartMilliseconds, FlowEndMilliseconds

# 0.4.8
* Now Parsing IPFix Mac Addresses correctly.


# 0.4.7
* Added `src_mac` and `dst_mac` to NetflowCommonFlowSet to help identify devices on V9, IPFix.

Expand Down
9 changes: 2 additions & 7 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

| Version | Supported |
| ------- | ------------------ |
| 0.4.9 | :white_check_mark: |
| 0.4.8 | :white_check_mark: |
| 0.4.7 | :white_check_mark: |
| 0.4.6 | :white_check_mark: |
Expand All @@ -14,10 +15,4 @@
| 0.4.1 | :white_check_mark: |
| 0.4.0 | :white_check_mark: |
| 0.3.6 | :white_check_mark: |
| 0.3.5 | :white_check_mark: |
| 0.3.4 | :white_check_mark: |
| 0.3.3 | :white_check_mark: |
| 0.3.2 | :white_check_mark: |
| 0.3.1 | :white_check_mark: |
| 0.3.0 | :white_check_mark: |
| <0.3.0 | Not Supported |
| <0.3.6 | Not Supported |
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ expression: fields
- Unknown
- Unknown
- Unknown
- Unknown
- Unknown
- DurationMillis
- DurationMillis
- Unknown
- Unknown
- Unknown
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ expression: fields
- Unknown
- Unknown
- Unknown
- Unknown
- Unknown
- FlowStartMilliseconds
- FlowEndMilliseconds
- Unknown
- Unknown
- Unknown
Expand Down
4 changes: 2 additions & 2 deletions src/variable_versions/v9_lookup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ impl From<V9Field> for FieldDataType {
96 => FieldDataType::String,
98 => FieldDataType::UnsignedDataNumber,
99 => FieldDataType::UnsignedDataNumber,
152=> FieldDataType::DurationMillis,
153=> FieldDataType::DurationMillis,
152 => FieldDataType::DurationMillis,
153 => FieldDataType::DurationMillis,
176 => FieldDataType::UnsignedDataNumber,
177 => FieldDataType::UnsignedDataNumber,
178 => FieldDataType::UnsignedDataNumber,
Expand Down

0 comments on commit 9d6dea5

Please sign in to comment.