|
Bugzilla – Full Text Bug Listing |
| Summary: | UDP/TCP ShutdownRecv incorrect | ||
|---|---|---|---|
| Product: | ns-3 | Reporter: | Rajib Bhattacharjea <raj.b> |
| Component: | internet | Assignee: | ns-bugs <ns-bugs> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | mathieu.lacage |
| Priority: | P5 | ||
| Version: | ns-3-dev | ||
| Hardware: | All | ||
| OS: | All | ||
changeset 893d48fcf7f3 |
They both do something like this: int UdpSocketImpl::ShutdownRecv (void) { NS_LOG_FUNCTION_NOARGS (); m_shutdownRecv = false; return 0; } Looks like that should be "true" in place of "false"? The logic of ForwardUp indicates this I think. This bug seems to go way back, and the fact that it is in TCP is due to copy paste.