Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for shutdownOutput (0.05 sec)

  1. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

            } else {
              socket.close()
            }
          }
    
          is CloseSocket -> {
            if (effect.shutdownInput) socket.shutdownInput()
            if (effect.shutdownOutput) socket.shutdownOutput()
            if (effect.closeSocket) socket.close()
          }
    
          Stall -> {
            // Sleep until the socket is closed.
            socket.sleepWhileOpen(TimeUnit.MINUTES.toNanos(60))
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 02 20:36:00 UTC 2025
    - 40.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbTransport.java

            try {
                while (iter.hasNext()) {
                    final SmbSession ssn = (SmbSession) iter.next();
                    ssn.logoff(hard);
                }
                socket.shutdownOutput();
                out.close();
                in.close();
                socket.close();
            } finally {
                digest = null;
                socket = null;
                tconHostName = null;
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.8K bytes
    - Viewed (0)
Back to top