mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
TCP -> Inet
This commit is contained in:
@@ -35,7 +35,7 @@ import java.net.SocketAddress;
|
||||
import net.sourceforge.guacamole.GuacamoleException;
|
||||
|
||||
|
||||
public class TCPGuacamoleSocket implements GuacamoleSocket {
|
||||
public class InetGuacamoleSocket implements GuacamoleSocket {
|
||||
|
||||
private GuacamoleReader reader;
|
||||
private GuacamoleWriter writer;
|
||||
@@ -43,7 +43,7 @@ public class TCPGuacamoleSocket implements GuacamoleSocket {
|
||||
private static final int SOCKET_TIMEOUT = 15000;
|
||||
private Socket sock;
|
||||
|
||||
public TCPGuacamoleSocket(String hostname, int port) throws GuacamoleException {
|
||||
public InetGuacamoleSocket(String hostname, int port) throws GuacamoleException {
|
||||
|
||||
try {
|
||||
|
Reference in New Issue
Block a user