Merge branch 'stats-bytes-recvd' of https://github.com/msmiley/bro

This commit is contained in:
Robin Sommer 2015-03-04 13:13:50 -08:00
commit e5adc768cc
8 changed files with 27 additions and 6 deletions

View file

@ -38,7 +38,12 @@ public:
*/
unsigned int link;
Stats() { received = dropped = link = 0; }
/**
* Bytes received by source after filtering (w/o drops).
*/
uint64 bytes_received;
Stats() { received = dropped = link = bytes_received = 0; }
};
/**