]> git.pond.sub.org Git - empserver/commit
Remove bogus io_noblocking() from player_login()
authorMarkus Armbruster <armbru@pond.sub.org>
Wed, 22 Apr 2009 17:52:59 +0000 (19:52 +0200)
committerMarkus Armbruster <armbru@pond.sub.org>
Sun, 19 Jul 2009 18:11:52 +0000 (14:11 -0400)
commit70bc528d0da09be69bdf5a192cfe0c1daf126211
tree6ceec1d8748e7ac7b9f01872830bc4c3817a1f8e
parent0025f24f1ea38cdbdc0b724b101b4ed2c9477db1
Remove bogus io_noblocking() from player_login()

The call switched the connection with the player to blocking I/O for
draining of output before closing the connection.  Looks scary,
because blocking on I/O blocks the complete server process, not just
the player thread.  But we don't do input, and we do output only with
IO_WAIT, which can't block.  So this has no effect.
src/lib/player/login.c