jdk/src/java.base/share/classes/sun/security/ssl/Handshaker.java
changeset 27068 5fe2d67f5f68
parent 25859 3317bb8137f4
child 27804 4659e70271c4
--- a/jdk/src/java.base/share/classes/sun/security/ssl/Handshaker.java	Mon Apr 21 11:08:30 2014 -0700
+++ b/jdk/src/java.base/share/classes/sun/security/ssl/Handshaker.java	Tue Apr 22 00:43:56 2014 +0000
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2014, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -359,6 +359,17 @@
         }
     }
 
+    String getEndpointIdentificationAlgorithmSE() {
+        SSLParameters paras;
+        if (conn != null) {
+            paras = conn.getSSLParameters();
+        } else {
+            paras = engine.getSSLParameters();
+        }
+
+        return paras.getEndpointIdentificationAlgorithm();
+    }
+
     private void setVersionSE(ProtocolVersion protocolVersion) {
         if (conn != null) {
             conn.setVersion(protocolVersion);