Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for pacote (0.21 sec)

  1. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

            return HEADER_LENGTH;
        }
        boolean isResponse() {
            return ( flags & FLAGS_RESPONSE ) == FLAGS_RESPONSE;
        }
    
        /* 
         * For this packet deconstruction technique to work for
         * other networking protocols the InputStream may need
         * to be passed to the readXxxWireFormat methods. This is
         * actually purer. However, in the case of smb we know the
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 21K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

        }
    
    
        protected boolean isResponse () {
            return ( this.flags & SmbConstants.FLAGS_RESPONSE ) == SmbConstants.FLAGS_RESPONSE;
        }
    
    
        /*
         * For this packet deconstruction technique to work for
         * other networking protocols the InputStream may need
         * to be passed to the readXxxWireFormat methods. This is
         * actually purer. However, in the case of smb we know the
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 32.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/DES.java

            for (i=0;i<8;i++) {
                key8[i] = (byte)( key8[i] << 1);
            }
        }
    
        /// Set the key.
        public void setKey( byte[] key ) {
    
            // CHECK PAROTY TBD
            deskey( key, true, encryptKeys );
            deskey( key, false, decryptKeys );
        }
    
        // Turn an 8-byte key into internal keys.
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 21.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTreeConnection.java

                    log.debug("Restting request");
                    request.reset();
                }
                if ( rpath != null ) {
                    // resolveDfs() and tree.send() modify the request packet.
                    // I want to restore it before retrying. request.reset()
                    // restores almost everything that was modified, except the path.
                    rpath.setPath(savedPath);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
Back to top