mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 21:27:40 +00:00
TCP -> Inet
This commit is contained in:
@@ -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 {
|
||||||
|
|
Reference in New Issue
Block a user