8078348: sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java fails with BindException
Reviewed-by: xuelei
This commit is contained in:
parent
603b214413
commit
9ef4bd4a6c
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -45,7 +45,7 @@ import javax.net.ssl.*;
|
|||||||
public class CipherTest {
|
public class CipherTest {
|
||||||
|
|
||||||
// use any available port for the server socket
|
// use any available port for the server socket
|
||||||
static int serverPort = 0;
|
static volatile int serverPort = 0;
|
||||||
|
|
||||||
final int THREADS;
|
final int THREADS;
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2002, 2006, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -42,7 +42,7 @@ class JSSEServer extends CipherTest.Server {
|
|||||||
serverContext.init(new KeyManager[] {cipherTest.keyManager}, new TrustManager[] {cipherTest.trustManager}, cipherTest.secureRandom);
|
serverContext.init(new KeyManager[] {cipherTest.keyManager}, new TrustManager[] {cipherTest.trustManager}, cipherTest.secureRandom);
|
||||||
|
|
||||||
SSLServerSocketFactory factory = (SSLServerSocketFactory)serverContext.getServerSocketFactory();
|
SSLServerSocketFactory factory = (SSLServerSocketFactory)serverContext.getServerSocketFactory();
|
||||||
serverSocket = (SSLServerSocket)factory.createServerSocket(cipherTest.serverPort);
|
serverSocket = (SSLServerSocket)factory.createServerSocket(0);
|
||||||
cipherTest.serverPort = serverSocket.getLocalPort();
|
cipherTest.serverPort = serverSocket.getLocalPort();
|
||||||
serverSocket.setEnabledCipherSuites(factory.getSupportedCipherSuites());
|
serverSocket.setEnabledCipherSuites(factory.getSupportedCipherSuites());
|
||||||
serverSocket.setWantClientAuth(true);
|
serverSocket.setWantClientAuth(true);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user