Home | History | Annotate | Download | only in scheme

Lines Matching refs:sock

84     public Socket connectSocket(Socket sock, String host, int port, 
96 if (sock == null)
97 sock = createSocket();
107 sock.bind(isa);
119 sock.connect(remoteAddress, timeout);
123 return sock;
133 * @param sock the connected socket
139 public final boolean isSecure(Socket sock)
142 if (sock == null) {
148 if (sock.getClass() != Socket.class) {
154 if (sock.isClosed()) {