Searched defs:hostname (Results 1 - 25 of 70) sorted by relevance

123

/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DHostnameVerifier.java29 * This class is the base interface for hostname verification.
31 * During handshaking, if the URL's hostname and
32 * the server's identification hostname mismatch, the
39 * These callbacks are used when the default rules for URL hostname
51 * @param hostname the host name
55 public boolean verify(String hostname, SSLSession session); argument
H A DHttpsURLConnection.java201 public boolean verify(String hostname, SSLSession session) { argument
254 * New instances of this class inherit the default static hostname
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/https/
H A DDefaultHostnameVerifier.java42 public boolean verify(String hostname, SSLSession session) { argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/transport/
H A DDefaultIORToSocketInfoImpl.java54 String hostname = primary.getHost().toLowerCase();
61 socketInfo = createSocketInfo(hostname, port);
70 hostname = alternate.getAddress().getHost().toLowerCase();
72 socketInfo= createSocketInfo(hostname, port);
78 private SocketInfo createSocketInfo(final String hostname, final int port) argument
82 public String getHost() { return hostname; }
H A DCorbaContactInfoListImpl.java157 String hostname =
165 createContactInfo(SocketInfo.IIOP_CLEAR_TEXT, hostname, port);
202 String hostname, int port)
209 type, hostname, port);
201 createContactInfo(String type, String hostname, int port) argument
/openjdk7/jdk/src/share/classes/java/net/
H A DInet4AddressImpl.java36 lookupAllHostAddr(String hostname) throws UnknownHostException; argument
H A DInetAddressImpl.java41 lookupAllHostAddr(String hostname) throws UnknownHostException; argument
H A DInet6AddressImpl.java42 lookupAllHostAddr(String hostname) throws UnknownHostException; argument
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/internal/ssl/
H A DX509ExtendedTrustManager.java76 * to use. If the algorithm and the peer hostname are available, the
77 * peer hostname is checked against the peer's identity presented in
82 * @param hostname the peer hostname
91 String authType, String hostname, String algorithm)
105 * to use. If the algorithm and the peer hostname are available, the
106 * peer hostname is checked against the peer's identity presented in
111 * @param hostname the peer hostname
120 String authType, String hostname, Strin
90 checkClientTrusted(X509Certificate[] chain, String authType, String hostname, String algorithm) argument
119 checkServerTrusted(X509Certificate[] chain, String authType, String hostname, String algorithm) argument
[all...]
/openjdk7/jdk/src/share/demo/management/FullThreadDump/
H A DFullThreadDump.java56 public FullThreadDump(String hostname, int port) { argument
57 System.out.println("Connecting to " + hostname + ":" + port);
61 String urlPath = "/jndi/rmi://" + hostname + ":" + port + "/jmxrmi";
103 String hostname = arg2[0];
115 FullThreadDump ftd = new FullThreadDump(hostname, port);
120 System.out.println("Usage: java FullThreadDump <hostname>:<port>");
/openjdk7/jdk/src/share/demo/management/VerboseGC/
H A DVerboseGC.java56 public VerboseGC(String hostname, int port) { argument
57 System.out.println("Connecting to " + hostname + ":" + port);
61 String urlPath = "/jndi/rmi://" + hostname + ":" + port + "/jmxrmi";
103 String hostname = "";
135 hostname = arg2[0];
148 VerboseGC vgc = new VerboseGC(hostname, port);
155 System.out.print("Usage: java VerboseGC <hostname>:<port> ");
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DSimpleClientId.java44 SimpleClientId(int version, String hostname, int port, argument
48 super(version, hostname, port, protocol, bindCtls, trace,
H A DDigestClientId.java65 DigestClientId(int version, String hostname, int port, argument
70 super(version, hostname, port, protocol, bindCtls, trace,
/openjdk7/jdk/src/share/classes/com/sun/security/ntlm/
H A DClient.java46 final private String hostname; field in class:Client
65 * @param hostname hostname of the client, can be null
76 public Client(String version, String hostname, String username, argument
83 this.hostname = hostname;
89 hostname, username, domain, version, v.toString());
99 if (hostname != null) {
109 p.writeSecurityBuffer(24, hostname, false);
150 p.writeSecurityBuffer(44, hostname, unicod
[all...]
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/InputRecord/
H A DClientHelloRead.java161 * DN name does not match the hostname in the URL.
190 public boolean verify(String hostname, SSLSession session) { argument
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DPostThruProxy.java149 static void doClientSide(String hostname) throws Exception { argument
160 * DN name does not match the hostname in the URL.
164 URL url = new URL("https://" + hostname+ ":" + serverPort);
199 public boolean verify(String hostname, SSLSession session) { argument
H A DB6216082.java161 public boolean verify(String hostname, SSLSession session) { argument
H A DCloseKeepAliveCached.java195 public boolean verify(String hostname, SSLSession session) { argument
H A DHttpsPost.java185 public boolean verify(String hostname, SSLSession session) { argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/legacy/connection/
H A DEndPointInfoImpl.java38 protected String hostname; field in class:EndPointInfoImpl
43 public EndPointInfoImpl(String type, int port, String hostname) { argument
46 this.hostname = hostname;
56 return hostname;
60 return hostname;
83 return type.hashCode() ^ hostname.hashCode() ^ port;
101 if (!hostname.equals(other.hostname)) {
112 hostname
[all...]
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/internal/www/protocol/https/
H A DDelegateHttpsURLConnection.java111 * This means we need to extract the hostname from the X.509 certificate
114 public boolean verify(String hostname, javax.net.ssl.SSLSession session) { argument
136 return verifier.verify(hostname, serverName);
162 * Note this code is essentially a subset of the hostname extraction
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/ProtocolVersion/
H A DHttpsProtocols.java164 public boolean verify(String hostname, SSLSession session) { argument
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/www/protocol/https/HttpsClient/
H A DProxyAuthTest.java155 * DN name does not match the hostname in the URL.
178 public boolean verify(String hostname, SSLSession session) { argument
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/www/protocol/https/HttpsURLConnection/
H A DCriticalSubjectAltName.java263 // Simple test method to blindly agree that hostname and certname match
264 public boolean verify(String hostname, SSLSession session) { argument
H A DGetResponseCode.java251 // Simple test method to blindly agree that hostname and certname match
252 public boolean verify(String hostname, SSLSession session) { argument

Completed in 85 milliseconds

123