diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 392c477a5..ca0aa4632 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -44,6 +44,7 @@ Bugs fixed - Bug 2397 - add backoff and cw tracing to EDCA - Bug 2398 - add SNR tag to beacons and probe responses - Bug 2406 - Poor 802.11g performance in ad-hoc mode +- Bug 2414 - UdpSocket doesn't call NotifyConnectionFailed Known issues ------------ diff --git a/src/internet/model/udp-socket-impl.cc b/src/internet/model/udp-socket-impl.cc index 33d24042f..6c7b2fd36 100644 --- a/src/internet/model/udp-socket-impl.cc +++ b/src/internet/model/udp-socket-impl.cc @@ -387,6 +387,7 @@ UdpSocketImpl::Connect (const Address & address) } else { + NotifyConnectionFailed (); return -1; }