Java Code Examples for javax.net.ssl.SSLServerSocket#setSoTimeout()
The following examples show how to use
javax.net.ssl.SSLServerSocket#setSoTimeout() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SocketFactory.java From dacapobench with Apache License 2.0 | 6 votes |
/** * Set the server socket configuration to our required * QOS values. * * A small experiment shows that setting either (want, need) parameter to either true or false sets the * other parameter to false. * * @param serverSocket * The newly created SSLServerSocket. * * @throws IOException if server socket can't be configured */ private void configureServerSocket(SSLServerSocket serverSocket) throws IOException { // set the authentication value and cipher suite info. serverSocket.setEnabledCipherSuites(cipherSuites); if (clientAuthRequired) { serverSocket.setNeedClientAuth(true); } else if (clientAuthSupported) { serverSocket.setWantClientAuth(true); } else { serverSocket.setNeedClientAuth(false); //could set want with the same effect } serverSocket.setSoTimeout(SOCKET_TIMEOUT_MS); if (log.isDebugEnabled()) { log.debug("Created SSL server socket on port " + serverSocket.getLocalPort()); log.debug(" client authentication " + (clientAuthSupported ? "SUPPORTED" : "UNSUPPORTED")); log.debug(" client authentication " + (clientAuthRequired ? "REQUIRED" : "OPTIONAL")); log.debug(" cipher suites:"); for (int i = 0; i < cipherSuites.length; i++) { log.debug(" " + cipherSuites[i]); } } }
Example 2
Source File: JSSEServer.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
public JSSEServer(SSLContext context, boolean needClientAuth) throws Exception { SSLServerSocketFactory serverFactory = context.getServerSocketFactory(); server = (SSLServerSocket) serverFactory.createServerSocket(0); server.setSoTimeout(TLSRestrictions.TIMEOUT); server.setNeedClientAuth(needClientAuth); // for dual authentication System.out.println("Server: port=" + getPort()); }
Example 3
Source File: JSSEServer.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
public JSSEServer(SSLContext context, boolean needClientAuth) throws Exception { SSLServerSocketFactory serverFactory = context.getServerSocketFactory(); server = (SSLServerSocket) serverFactory.createServerSocket(0); server.setSoTimeout(TLSRestrictions.TIMEOUT); server.setNeedClientAuth(needClientAuth); // for dual authentication System.out.println("Server: port=" + getPort()); }
Example 4
Source File: JSSEServer.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
public JSSEServer(SSLContext context, boolean needClientAuth) throws Exception { SSLServerSocketFactory serverFactory = context.getServerSocketFactory(); server = (SSLServerSocket) serverFactory.createServerSocket(0); server.setSoTimeout(TLSRestrictions.TIMEOUT); server.setNeedClientAuth(needClientAuth); // for dual authentication System.out.println("Server: port=" + getPort()); }
Example 5
Source File: JSSEServer.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
public JSSEServer(SSLContext context, boolean needClientAuth) throws Exception { SSLServerSocketFactory serverFactory = context.getServerSocketFactory(); server = (SSLServerSocket) serverFactory.createServerSocket(0); server.setSoTimeout(TLSRestrictions.TIMEOUT); server.setNeedClientAuth(needClientAuth); // for dual authentication System.out.println("Server: port=" + getPort()); }
Example 6
Source File: JSSEServer.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
public JSSEServer(SSLContext context, String constraint, boolean needClientAuth) throws Exception { TLSRestrictions.setConstraint("Server", constraint); SSLServerSocketFactory serverFactory = context.getServerSocketFactory(); server = (SSLServerSocket) serverFactory.createServerSocket(0); server.setSoTimeout(TLSRestrictions.TIMEOUT); server.setNeedClientAuth(needClientAuth); // for dual authentication System.out.println("Server: port=" + getPort()); }
Example 7
Source File: JSSEServer.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
JSSEServer(CipherTest cipherTest) throws Exception { super(cipherTest); SSLContext serverContext = SSLContext.getInstance("TLS"); serverContext.init( new KeyManager[] { CipherTest.keyManager }, new TrustManager[] { CipherTest.trustManager }, CipherTest.secureRandom); SSLServerSocketFactory factory = (SSLServerSocketFactory)serverContext.getServerSocketFactory(); serverSocket = (SSLServerSocket)factory.createServerSocket(0); serverSocket.setSoTimeout(CipherTest.TIMEOUT); CipherTest.serverPort = serverSocket.getLocalPort(); serverSocket.setEnabledCipherSuites(factory.getSupportedCipherSuites()); serverSocket.setWantClientAuth(true); }
Example 8
Source File: JSSEServer.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
public JSSEServer(SSLContext context, boolean needClientAuth) throws Exception { SSLServerSocketFactory serverFactory = context.getServerSocketFactory(); server = (SSLServerSocket) serverFactory.createServerSocket(0); server.setSoTimeout(TLSRestrictions.TIMEOUT); server.setNeedClientAuth(needClientAuth); // for dual authentication System.out.println("Server: port=" + getPort()); }
Example 9
Source File: TSSLTransportFactory.java From incubator-retired-blur with Apache License 2.0 | 5 votes |
private static TServerSocket createServer(SSLServerSocketFactory factory, int port, int timeout, boolean clientAuth, InetAddress ifAddress, TSSLTransportParameters params) throws TTransportException { try { SSLServerSocket serverSocket = (SSLServerSocket) factory.createServerSocket(port, 100, ifAddress); serverSocket.setSoTimeout(timeout); serverSocket.setNeedClientAuth(clientAuth); if (params != null && params.cipherSuites != null) { serverSocket.setEnabledCipherSuites(params.cipherSuites); } return new TServerSocket(serverSocket, timeout); } catch (Exception e) { throw new TTransportException("Could not bind to port " + port, e); } }
Example 10
Source File: TSSLTransportFactory.java From galaxy-sdk-java with Apache License 2.0 | 5 votes |
private static TServerSocket createServer(SSLServerSocketFactory factory, int port, int timeout, boolean clientAuth, InetAddress ifAddress, TSSLTransportParameters params) throws TTransportException { try { SSLServerSocket serverSocket = (SSLServerSocket) factory.createServerSocket(port, 100, ifAddress); serverSocket.setSoTimeout(timeout); serverSocket.setNeedClientAuth(clientAuth); if (params != null && params.cipherSuites != null) { serverSocket.setEnabledCipherSuites(params.cipherSuites); } return new TServerSocket(serverSocket, timeout); } catch (Exception e) { throw new TTransportException("Could not bind to port " + port, e); } }