Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getDialect (0.15 sec)

  1. src/main/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponse.java

    
        /**
         * @return the securityMode
         */
        public int getSecurityMode () {
            return this.securityMode;
        }
    
    
        /**
         * @return the dialect
         */
        public int getDialect () {
            return this.dialect;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Decodable#decode(byte[], int, int)
         */
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/DialectVersion.java

        }
    
    
        /**
         * @return the smb2
         */
        public final boolean isSMB2 () {
            return this.smb2;
        }
    
    
        /**
         * @return the dialect
         */
        public final int getDialect () {
            if ( !this.smb2 ) {
                throw new UnsupportedOperationException();
            }
            return this.dialect;
        }
    
    
        /**
         * 
         * @param v
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java

            this.dialects = new int[dvs.size()];
            int i = 0;
            for ( DialectVersion ver : dvs ) {
                this.dialects[ i ] = ver.getDialect();
                i++;
            }
    
            if ( config.getMaximumVersion().atLeast(DialectVersion.SMB210) ) {
                System.arraycopy(config.getMachineId(), 0, this.clientGuid, 0, this.clientGuid.length);
            }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7.5K bytes
    - Viewed (0)
Back to top