Skip to content

Commit

Permalink
Add NSEL/NEL event flag
Browse files Browse the repository at this point in the history
  • Loading branch information
phaag committed Dec 22, 2022
1 parent 0c45f2d commit 35f9735
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/netflow/netflow_v9.c
Original file line number Diff line number Diff line change
Expand Up @@ -1239,10 +1239,12 @@ static inline void Process_v9_data(exporterDomain_t *exporter, void *data_flowse
EXnselCommon_t *nselCommon = sequencer->offsetCache[EXnselCommonID];
if (nselCommon) {
nselCommon->msecEvent = stack[STACK_MSEC];
SetFlag(recordHeaderV3->flags, V3_FLAG_EVENT);
}
EXnelCommon_t *nelCommon = sequencer->offsetCache[EXnelCommonID];
if (nelCommon) {
nelCommon->msecEvent = stack[STACK_MSEC];
SetFlag(recordHeaderV3->flags, V3_FLAG_EVENT);
}

// nprobe latency
Expand Down

0 comments on commit 35f9735

Please sign in to comment.