| | |
| | | import java.util.LinkedHashMap; |
| | | import java.util.Map; |
| | | import java.util.concurrent.atomic.AtomicBoolean; |
| | | import java.util.logging.Level; |
| | | |
| | | import javax.net.ssl.SSLContext; |
| | | import javax.net.ssl.SSLEngine; |
| | |
| | | import org.glassfish.grizzly.ssl.SSLFilter; |
| | | import org.glassfish.grizzly.ssl.SSLUtils; |
| | | |
| | | import com.forgerock.opendj.util.StaticUtils; |
| | | import com.forgerock.opendj.util.Validator; |
| | | |
| | | /** |
| | |
| | | |
| | | @Override |
| | | public NextAction handleAccept(final FilterChainContext ctx) throws IOException { |
| | | StaticUtils.DEBUG_LOG.log(Level.INFO, "Accepting client connection "); |
| | | Thread.dumpStack(); |
| | | final Connection<?> connection = ctx.getConnection(); |
| | | connection.configureBlocking(true); |
| | | try { |