Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for detect (1.04 sec)

  1. src/main/java/jcifs/smb/SmbTreeConnection.java

                    log.debug(String.format("Retrying (%d/%d) request %s", retries, maxRetries, request));
                }
    
                // should we disconnect the transport here? otherwise we make an additional attempt to detect that if the
                // server closed the connection as a result
                log.debug("Disconnecting tree on send retry", last);
                disconnect(true);
    
                if ( retries >= maxRetries ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbResource.java

         * <tt>S-X-Y-Z</tt> strings of fragments of).
         * <p>
         * Alternatively <tt>getSecurity(true)</tt> may be used to resolve all
         * SIDs together and detect network failures.
         * 
         * @return array of ACEs
         * @throws IOException
         */
        ACE[] getSecurity () throws IOException;
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                    if (r.byteCount > 0 && pad > 0 && pad < 4)
                        readn( in, BUF, 4 + off, pad);
    
                    if (r.dataLength > 0)
                        readn( in, r.b, r.off, r.dataLength );  /* read direct */
                } else {
                    readn( in, BUF, 4 + 32, size - 32 );
                    resp.decode( BUF, 4 );
                    if (resp instanceof SmbComTransactionResponse) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
Back to top