| | |
| | | .accept(); |
| | | LDAPClientConnection clientConnection = |
| | | new LDAPClientConnection(this, clientChannel); |
| | | |
| | | // Check to see if the core server rejected the |
| | | // connection (e.g., already too many connections |
| | | // established). |
| | | if (clientConnection.getConnectionID() < 0) { |
| | | // The connection will have already been closed. |
| | | iterator.remove(); |
| | | continue; |
| | | } |
| | | |
| | | InetAddress clientAddr = clientConnection |
| | | .getRemoteAddress(); |
| | | // Check to see if the client is on the denied list. |
| | |
| | | continue; |
| | | } |
| | | |
| | | |
| | | // Check to see if the core server rejected the |
| | | // connection (e.g., already too many connections |
| | | // established). |
| | | if (clientConnection.getConnectionID() < 0) { |
| | | // The connection will have already been closed. |
| | | iterator.remove(); |
| | | continue; |
| | | } |
| | | |
| | | // If we've gotten here, then we'll take the |
| | | // connection so invoke the post-connect plugins and |
| | | // register the client connection with a request |