Skip to content

Commit

Permalink
*) adding function to return the protocol type of a ssl connection
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2274 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
theli committed Jul 3, 2006
1 parent 675d108 commit fe617d7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions source/de/anomic/server/serverCoreSocket.java
Expand Up @@ -70,6 +70,10 @@ public boolean isSSL() {
return this.isSSL;
}

public String getProtocol() {
return this.sslType;
}

private void detectSSL() throws IOException {
InputStream in = getInputStream();

Expand Down

0 comments on commit fe617d7

Please sign in to comment.