From 6090fcd3a69bbeb7d1b5c56ddadd8ed24ad57cca Mon Sep 17 00:00:00 2001 From: Tommaso Pecorella Date: Wed, 18 May 2016 23:13:08 +0200 Subject: [PATCH] internet: (fixes #2414) UdpSocket doesn't call NotifyConnectionFailed --- RELEASE_NOTES | 1 + src/internet/model/udp-socket-impl.cc | 1 + 2 files changed, 2 insertions(+) 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; }