Searched refs:peerHost (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DSSLContext.java349 * information, in which case peerHost needs to be specified.
351 * @param peerHost the non-authoritative name of the host
360 public final SSLEngine createSSLEngine(String peerHost, int peerPort) { argument
362 return contextSpi.engineCreateSSLEngine(peerHost, peerPort);
H A DSSLEngine.java373 private String peerHost = null; field in class:SSLEngine
390 * <code>peerHost</code> and <code>peerPort</code> parameters as hints
400 * @param peerHost the name of the peer host
405 protected SSLEngine(String peerHost, int peerPort) { argument
406 this.peerHost = peerHost;
420 return peerHost;

Completed in 54 milliseconds