From b450226296418c04b432ddba49d06bfe4c636950 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 28 May 2015 08:28:45 -0600 Subject: [PATCH] Update ChangeLog --- ChangeLog | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 55cf28c256..2575240c36 100755 --- a/ChangeLog +++ b/ChangeLog @@ -10449,3 +10449,10 @@ * net/tcp: Fix an important TCP networking bug: 16-bit flags was being converted to 8-bits in a few locations, causing loss of status indications (2015-05-27). + * net/socket and net/tcp: net_startmonitor.c always returned OK. In + the case where a socket has already been closed, it correctly handled + the disconnetion event but still returned OK. Returning OK caused + the callers of net_startmonitor to assume that the connection was + okay, undoing the good things that net_startmonitor did and causing + the socket to be marked as connected. This behavior was noted by + Pelle Windestam (2015-05-28).