Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SMB202 (0.13 sec)

  1. src/test/java/jcifs/tests/ContextConfigTest.java

            Properties prop3 = new Properties();
            prop3.setProperty("jcifs.smb.client.minVersion", "SMB202");
            PropertyConfiguration p3 = new PropertyConfiguration(prop3);
            assertEquals(DialectVersion.SMB202, p3.getMinimumVersion());
    
            // needs to be adjusted when default changes
            assertEquals(DialectVersion.SMB210, p3.getMaximumVersion());
    
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 9.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/PropertyConfiguration.java

                boolean smb2 = Config.getBoolean(p, "jcifs.smb.client.enableSMB2", true);
                boolean nosmb1 = Config.getBoolean(p, "jcifs.smb.client.disableSMB1", false);
                initProtocolVersions(nosmb1 ? DialectVersion.SMB202 : null, !smb2 ? DialectVersion.SMB1 : null);
            }
    
            initResolverOrder(p.getProperty("jcifs.resolveOrder"));
            initDisallowCompound(p.getProperty("jcifs.smb.client.disallowCompound"));
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 8.9K bytes
    - Viewed (0)
Back to top