Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Nash (0.16 sec)

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

        protected static final int ATTR_SET_MASK = 0x30A7;
        protected static final int DEFAULT_ATTR_EXPIRATION_PERIOD = 5000;
    
        protected static final int HASH_DOT = ".".hashCode();
        protected static final int HASH_DOT_DOT = "..".hashCode();
    
        private static Logger log = LoggerFactory.getLogger(SmbFile.class);
    
        private long createTime;
        private long lastModified;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

                updatePreauthHash(resp.getRequestRaw());
                updatePreauthHash(resp.getResponseRaw());
                if ( log.isDebugEnabled() ) {
                    log.debug("Preauth hash after negotiate " + Hexdump.toHexString(this.preauthIntegrityHash));
                }
            }
        }
    
    
        protected synchronized void doDisconnect ( boolean hard ) throws IOException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbSessionImpl.java

            this.preauthIntegrityHash = preauthIntegrity ? trans.getPreauthIntegrityHash() : null;
    
            if ( this.preauthIntegrityHash != null && log.isDebugEnabled() ) {
                log.debug("Initial session preauth hash " + Hexdump.toHexString(this.preauthIntegrityHash));
            }
    
            while ( true ) {
                Subject s = this.credentials.getSubject();
                if ( ctx == null ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
Back to top