Skip to content

Commit

Permalink
Merge pull request #436 from untangle/MFW-5847
Browse files Browse the repository at this point in the history
version: bug
MFW-5847: Added ruleId in the Dos protobuf
  • Loading branch information
avinashdige15 authored Nov 27, 2024
2 parents bcfbefc + 91f56e0 commit 42ddeab
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 16 deletions.
7 changes: 4 additions & 3 deletions protobuffersrc/DosEvent.proto
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ enum Protocol {
}

message DosEvent {
string fromHost = 1; // Source IP address as string (e.g., 192.168.56.11)
string toHost = 2; // Destination IP address as string (e.g., 192.168.56.11)
string fromHost = 1; // Source IP address as string (e.g., 192.168.56.11)
string toHost = 2; // Destination IP address as string (e.g., 192.168.56.11)
Protocol protocol = 3; // Enum for protocol type (all, tcp, udp, icmp)
int64 timeStamp = 4; // Unix timestamp in milliseconds
string ruleId = 4; // RuleID for the DOS rule
int64 timeStamp = 5; // Unix timestamp in milliseconds
}
35 changes: 22 additions & 13 deletions structs/protocolbuffers/DosEvent/DosEvent.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 42ddeab

Please sign in to comment.