Minor fix: restore LDAP connection start/stop error log messages
These went missing during the migration from the old connection handler
to the new Grizzly based connection handler.
| | |
| | | if (listener != null) { |
| | | listener.close(); |
| | | listener = null; |
| | | logger.info(NOTE_CONNHANDLER_STOPPED_LISTENING, handlerName); |
| | | } |
| | | } |
| | | |
| | |
| | | }, Options.defaultOptions() |
| | | .set(LDAPListener.CONNECT_MAX_BACKLOG, backlog) |
| | | .set(LDAPListener.REQUEST_MAX_SIZE_IN_BYTES, (int) currentConfig.getMaxRequestSize())); |
| | | logger.info(NOTE_CONNHANDLER_STARTED_LISTENING, handlerName); |
| | | } |
| | | |
| | | /** |