Drop duplicated packet directly (#911)

This commit is contained in:
rongli
2016-11-01 23:53:55 +08:00
committed by Jonathan Hui
parent 3001fc689c
commit cec41045db
6 changed files with 38 additions and 6 deletions
+1
View File
@@ -512,6 +512,7 @@ void Interpreter::ProcessCounters(int argc, char *argv[])
sServer->OutputFormat(" RxOther: %d\r\n", counters->mRxOther);
sServer->OutputFormat(" RxWhitelistFiltered: %d\r\n", counters->mRxWhitelistFiltered);
sServer->OutputFormat(" RxDestAddrFiltered: %d\r\n", counters->mRxDestAddrFiltered);
sServer->OutputFormat(" RxDuplicated: %d\r\n", counters->mRxDuplicated);
sServer->OutputFormat(" RxErrNoFrame: %d\r\n", counters->mRxErrNoFrame);
sServer->OutputFormat(" RxErrNoUnknownNeighbor: %d\r\n", counters->mRxErrUnknownNeighbor);
sServer->OutputFormat(" RxErrInvalidSrcAddr: %d\r\n", counters->mRxErrInvalidSrcAddr);