Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getDialects (0.07 sec)

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

            return this.capabilities;
        }
    
        /**
         * Gets the array of SMB dialect versions supported by the client.
         *
         * @return the dialects
         */
        public int[] getDialects() {
            return this.dialects;
        }
    
        /**
         * Gets the client GUID used for identification.
         *
         * @return the clientGuid
         */
        public byte[] getClientGuid() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/DialectVersionTest.java

                DialectVersion.SMB1.getDialect();
            });
    
            // SMB2+ versions should have valid dialect codes
            assertTrue(DialectVersion.SMB202.getDialect() > 0);
            assertTrue(DialectVersion.SMB210.getDialect() > 0);
            assertTrue(DialectVersion.SMB300.getDialect() > 0);
            assertTrue(DialectVersion.SMB302.getDialect() > 0);
            assertTrue(DialectVersion.SMB311.getDialect() > 0);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponse.java

            return this.securityMode;
        }
    
        /**
         * Gets the negotiated SMB dialect
         *
         * @return the SMB dialect negotiated with the server
         */
        public int getDialect() {
            return this.dialect;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Decodable#decode(byte[], int, int)
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/DialectVersion.java

         */
        public final boolean isSMB2() {
            return this.smb2;
        }
    
        /**
         * Get the SMB2 dialect identifier
         *
         * @return the dialect
         */
        public final int getDialect() {
            if (!this.smb2) {
                throw new UnsupportedOperationException();
            }
            return this.dialect;
        }
    
        /**
         * Check if this dialect version is at least the specified version
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top