Skip to content

Commit

Permalink
This makes the 7 tuple that identifies a flow record
Browse files Browse the repository at this point in the history
mandatory. So in case any of the 7 tuple is not set
we take default value.
Closes-Bug:#1664449

Change-Id: Ib79351f262887a8f3f7ff5ab241a935e4b63b11e
(cherry picked from commit ce2162d)
(cherry picked from commit 9ada7d3)
  • Loading branch information
arvindvis committed Feb 24, 2017
1 parent 24e1569 commit e1668b8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/sandesh/common/flow.sandesh
Expand Up @@ -11,13 +11,13 @@
struct FlowLogData {
1: string flowuuid;
2: byte direction_ing;
3: optional string sourcevn;
4: optional ipaddr sourceip;
5: optional string destvn;
6: optional ipaddr destip;
7: optional byte protocol;
8: optional i16 sport;
9: optional i16 dport;
3: string sourcevn;
4: ipaddr sourceip;
5: string destvn;
6: ipaddr destip;
7: byte protocol;
8: i16 sport;
9: i16 dport;
11: optional u16 tcp_flags;
12: optional string vm;
16: optional string reverse_uuid;
Expand Down

0 comments on commit e1668b8

Please sign in to comment.