|
Bugzilla – Full Text Bug Listing |
| Summary: | No duplicate filtering for managament frames | ||
|---|---|---|---|
| Product: | ns-3 | Reporter: | Kirill V. Andreev <kirillano> |
| Component: | wifi | Assignee: | ns-bugs <ns-bugs> |
| Status: | RESOLVED FIXED | ||
| Severity: | major | CC: | craigdo, mathieu.lacage |
| Priority: | P1 | ||
| Version: | ns-3-dev | ||
| Hardware: | All | ||
| OS: | All | ||
| Attachments: | Added duplicate filtering for non-data unicast frames | ||
Is there a specific reason why you simply did not move checks SequenceControlSmaller and IsDuplicate from the first clause of the if (IsData ()) statement to the beginning of the function MacRxMiddle::Receive ? (sorry it took me so long to review this patch) There is no reason. Of course, it would be better to make this check befor this if(). :) changeset f38616f83c3b |
Created attachment 302 [details] Added duplicate filtering for non-data unicast frames Duplicate filtering is implemented in mac-rx-middle.cc only for data frames, but managament frames also need this procedure.