This commit is contained in:
Trustin Lee 2014-05-22 10:28:38 +09:00
parent af3b358892
commit d803a75e2f

View File

@ -106,7 +106,8 @@ public final class JdkSslClientContext extends JdkSslContext {
super(ciphers);
if (nextProtocols != null && nextProtocols.iterator().hasNext() && !JettyNpnSslEngine.isAvailable()) {
if (nextProtocols != null && nextProtocols.iterator().hasNext()) {
if (!JettyNpnSslEngine.isAvailable()) {
throw new SSLException("NPN/ALPN unsupported: " + nextProtocols);
}
@ -118,6 +119,9 @@ public final class JdkSslClientContext extends JdkSslContext {
nextProtoList.add(p);
}
this.nextProtocols = Collections.unmodifiableList(nextProtoList);
} else {
this.nextProtocols = Collections.emptyList();
}
try {
if (certChainFile == null) {