*) adding function to return the protocol type of a ssl connection

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2274 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
theli 19 years ago
parent 675d1081a4
commit fe617d7e54

@ -70,6 +70,10 @@ public class serverCoreSocket extends Socket {
return this.isSSL;
}
public String getProtocol() {
return this.sslType;
}
private void detectSSL() throws IOException {
InputStream in = getInputStream();

Loading…
Cancel
Save