TCP -> Inet

This commit is contained in:
Michael Jumper
2011-05-12 23:49:09 -07:00
parent 78a957b978
commit 3dd0c20ba9

View File

@@ -35,7 +35,7 @@ import java.net.SocketAddress;
import net.sourceforge.guacamole.GuacamoleException; import net.sourceforge.guacamole.GuacamoleException;
public class TCPGuacamoleSocket implements GuacamoleSocket { public class InetGuacamoleSocket implements GuacamoleSocket {
private GuacamoleReader reader; private GuacamoleReader reader;
private GuacamoleWriter writer; private GuacamoleWriter writer;
@@ -43,7 +43,7 @@ public class TCPGuacamoleSocket implements GuacamoleSocket {
private static final int SOCKET_TIMEOUT = 15000; private static final int SOCKET_TIMEOUT = 15000;
private Socket sock; private Socket sock;
public TCPGuacamoleSocket(String hostname, int port) throws GuacamoleException { public InetGuacamoleSocket(String hostname, int port) throws GuacamoleException {
try { try {