Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for atLeast (0.14 sec)

  1. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java

                i++;
            }
    
            if ( config.getMaximumVersion().atLeast(DialectVersion.SMB210) ) {
                System.arraycopy(config.getMachineId(), 0, this.clientGuid, 0, this.clientGuid.length);
            }
    
            List<NegotiateContextRequest> negoContexts = new LinkedList<>();
            if ( config.getMaximumVersion() != null && config.getMaximumVersion().atLeast(DialectVersion.SMB311) ) {
                byte[] salt = new byte[32];
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/DialectVersion.java

            }
            return this.dialect;
        }
    
    
        /**
         * 
         * @param v
         * @return whether this version is a least the given one
         */
        public boolean atLeast ( DialectVersion v ) {
            return ordinal() >= v.ordinal();
        }
    
    
        /**
         * 
         * @param v
         * @return whether this version is a most the given one
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.6K bytes
    - Viewed (0)
Back to top