Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getDialects (0.15 sec)

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

        /**
         * @return the capabilities
         */
        public int getCapabilities () {
            return this.capabilities;
        }
    
    
        /**
         * @return the dialects
         */
        public int[] getDialects () {
            return this.dialects;
        }
    
    
        /**
         * @return the clientGuid
         */
        public byte[] getClientGuid () {
            return this.clientGuid;
        }
    
    
        /**
    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/smb/SmbTreeImpl.java

                new ValidateNegotiateInfoRequest(
                    negoReq.getCapabilities(),
                    negoReq.getClientGuid(),
                    (short) negoReq.getSecurityMode(),
                    negoReq.getDialects()));
    
            Smb2IoctlResponse resp;
            try {
                resp = send(req, RequestParam.NO_RETRY);
            }
            catch ( SMBSignatureValidationException e ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  3. 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
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.2K bytes
    - Viewed (0)
  4. 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
    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)
  5. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

            DialectVersion selected = null;
            for ( DialectVersion dv : DialectVersion.values() ) {
                if ( !dv.isSMB2() ) {
                    continue;
                }
                if ( dv.getDialect() == getDialectRevision() ) {
                    selected = dv;
                }
            }
    
            if ( selected == null ) {
                log.error("Server returned an unknown dialect");
                return false;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 22 10:09:46 GMT 2020
    - 17.6K bytes
    - Viewed (0)
Back to top