diff options
author | 2018-02-19 11:52:56 -0600 | |
---|---|---|
committer | 2018-02-19 11:52:56 -0600 | |
commit | f3f4459031004fbac06f729354ec73aa0653bc74 (patch) | |
tree | 7e555c5157bc94647f94cfffe1e22e181467da54 /ChangeLog.txt | |
parent | 26e30fa2e1a0fe4e885d7eea3f55d23cd2c3158f (diff) | |
download | pseudo-f3f4459031004fbac06f729354ec73aa0653bc74.tar.gz pseudo-f3f4459031004fbac06f729354ec73aa0653bc74.tar.bz2 pseudo-f3f4459031004fbac06f729354ec73aa0653bc74.zip |
Epoll: use the correct client
So in the non-listen-fd case, apparently I broke the code to use
the index of the returned event, rather than the corresponding ID
value registered with epoll, as the index into the clients array.
This, of course, was nonsense, and explains why we were seeing a
ton of attempts to modify client 0.
This also reverts the previous, incorrect, attempt to address all
those messages.
Signed-off-by: seebs <seebs@seebs.net>
Diffstat (limited to 'ChangeLog.txt')
-rw-r--r-- | ChangeLog.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt index ae27a6a..8c886c6 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,6 @@ +2018-02-19: + * (seebs) fix using index of request rather than request's value + 2018-02-16: * (seebs) allow closing client #0. |