From: Sai Nane Date: Sat, 28 Nov 2015 23:43:40 +0000 (+1300) Subject: Fix ident race condition X-Git-Tag: travis-deploy-test~538^2 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=738828e0d4377d0037d8a37c9b991c6fd627b406;hp=738828e0d4377d0037d8a37c9b991c6fd627b406 Fix ident race condition This creates an entry for the port as soon as the socket is opened, without duplicates. This allows an identd service to respond correctly if a request is received before the SSL handshake has finished and been processed on our side. Since socketOpen is not used in the project, it is removed here. Since the only usage of socketInitialized(...) is with oidentd, its semantic meaning is slightly changed to occur earlier, like socketOpen, but only once, like the former socketInitialized(...). ---