Home | History | Annotate | Download | only in tcp

Lines Matching refs:sock

57     private Socket sock;
66 this.sock = new Socket(address, port);
67 remoteAddress = sock.getRemoteSocketAddress(); // for info purposes
71 sock.setTcpNoDelay(true);
73 in = sock.getInputStream();
74 out = sock.getOutputStream();
81 if( sock == null )
87 if( sock == null )
89 return sock.isConnected();
96 Socket temp = sock;
97 sock = null;