|
Bugzilla – Full Text Bug Listing |
| Summary: | wrong modulation type is selected in the forwardBurst method | ||
|---|---|---|---|
| Product: | ns-3 | Reporter: | Mohamed Amine ISMAIL <amine.ismail> |
| Component: | wimax | Assignee: | Mohamed Amine ISMAIL <amine.ismail> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | jpelkey, kubota, ns-bugs, tomh |
| Priority: | P3 | ||
| Version: | ns-3-dev | ||
| Hardware: | All | ||
| OS: | All | ||
+1 Is this one resolved? I looked at the file and the change you suggested, but it looked a bit different now. Amine, please review and close this if it is resolved. The suggested patch was applied. |
The modulation type is not correctly set in the method forwardBurst. in fact the following lines in bs-net-device.cc 959 if (m_serviceFlowManager->GetServiceFlow (cid)->GetIsMulticast () == true) 960 { 961 modulationType = m_serviceFlowManager->GetServiceFlow (cid)->GetModulation (); 962 } should be changed to: 961 modulationType = m_serviceFlowManager->GetServiceFlow (cid)->GetModulation (); lines 959, 960, and 962 should be removed