Add isOpen() to socket and tunnel. Add getSocket() to tunnel.

This commit is contained in:
Michael Jumper
2012-03-26 11:34:42 -07:00
parent 4b72a166ec
commit 762c84f25f
5 changed files with 47 additions and 2 deletions

View File

@@ -121,4 +121,9 @@ public class ConfiguredGuacamoleSocket implements GuacamoleSocket {
socket.close();
}
@Override
public boolean isOpen() {
return socket.isOpen();
}
}