Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for maxVersion (0.08 sec)

  1. src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateResponse.java

         * @return maximum protocol version
         */
        public int getMaxVersion() {
            return maxVersion;
        }
    
        /**
         * Set the maximum SMB Direct protocol version
         *
         * @param maxVersion maximum protocol version
         */
        public void setMaxVersion(int maxVersion) {
            this.maxVersion = maxVersion;
        }
    
        /**
         * Get the negotiated SMB Direct protocol version
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateRequest.java

         * @return maximum protocol version
         */
        public int getMaxVersion() {
            return maxVersion;
        }
    
        /**
         * Set the maximum SMB Direct protocol version
         *
         * @param maxVersion maximum protocol version
         */
        public void setMaxVersion(int maxVersion) {
            this.maxVersion = maxVersion;
        }
    
        /**
         * Get the number of send credits requested
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/rdma/RdmaNegotiateRequest.java

         *
         * @return maximum version
         */
        public int getMaxVersion() {
            return maxVersion;
        }
    
        /**
         * Set maximum protocol version
         *
         * @param maxVersion maximum version
         */
        public void setMaxVersion(int maxVersion) {
            this.maxVersion = maxVersion;
        }
    
        /**
         * Get number of credits requested
         *
         * @return credits requested
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/PropertyConfiguration.java

            String minVersion = props.getProperty("jcifs.smb.client.minVersion");
            String maxVersion = props.getProperty("jcifs.smb.client.maxVersion");
            if (minVersion != null || maxVersion != null) {
                initProtocolVersions(minVersion, maxVersion);
            }
    
            // Multi-Channel Configuration
            value = props.getProperty("jcifs.smb.client.useMultiChannel");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/config/BaseConfiguration.java

            this.minVersion = min != null ? min : DialectVersion.SMB202;
            this.maxVersion = max != null ? max : DialectVersion.SMB311;
    
            if (this.minVersion.atLeast(this.maxVersion)) {
                this.maxVersion = this.minVersion;
            }
        }
    
        /**
         * Initializes the disallowed compound operations based on the provided property string.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  6. src/test/java/jcifs/config/PropertyConfigurationTest.java

            // Given
            Properties props = new Properties();
            props.setProperty("jcifs.smb.client.minVersion", "SMB1");
            props.setProperty("jcifs.smb.client.maxVersion", "SMB311");
    
            // When
            PropertyConfiguration testConfig = new PropertyConfiguration(props);
    
            // Then
            assertEquals(DialectVersion.SMB1, testConfig.getMinimumVersion());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  7. src/test/java/jcifs/config/DelegatingConfigurationTest.java

        void testProtocolVersionDelegation() {
            // Given
            DialectVersion minVersion = DialectVersion.SMB1;
            DialectVersion maxVersion = DialectVersion.SMB311;
            when(mockDelegate.getMinimumVersion()).thenReturn(minVersion);
            when(mockDelegate.getMaximumVersion()).thenReturn(maxVersion);
    
            // When
            DialectVersion resultMin = delegatingConfig.getMinimumVersion();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateRequestTest.java

        void testCapabilitiesBasedOnConfig(boolean dfsEnabled, boolean encryptionEnabled, String maxVersion, int expectedCapabilityCount) {
            // Given
            when(mockConfig.isDfsDisabled()).thenReturn(!dfsEnabled);
            when(mockConfig.isEncryptionEnabled()).thenReturn(encryptionEnabled);
            when(mockConfig.getMaximumVersion()).thenReturn(DialectVersion.valueOf(maxVersion));
    
            // When
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  9. README.md

    # Authentication
    jcifs.smb.client.domain=WORKGROUP
    jcifs.smb.client.username=guest
    jcifs.smb.client.password=
    
    # Protocol versions (SMB1 to SMB 3.1.1)
    jcifs.smb.client.minVersion=SMB1
    jcifs.smb.client.maxVersion=SMB311
    
    # Security
    jcifs.smb.client.signingPreferred=false
    jcifs.smb.client.signingEnforced=false
    jcifs.smb.client.encryptionEnforced=false
    jcifs.smb.client.disablePlainTextPasswords=true
    
    # Performance
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 09:24:52 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponseTest.java

        void testWithDifferentConfigurations() throws Exception {
            // Test with different configuration settings
            Properties props = new Properties();
            props.setProperty("jcifs.smb.client.maxVersion", "SMB302");
            Configuration customConfig = new PropertyConfiguration(props);
    
            Trans2SetFileInformationResponse customResponse = new Trans2SetFileInformationResponse(customConfig);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.9K bytes
    - Viewed (0)
Back to top