*) 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
This commit is contained in:
theli 2006-07-03 14:16:46 +00:00
parent 675d1081a4
commit fe617d7e54

View File

@ -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();