- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for SMB210 (0.04 sec)
-
src/test/java/jcifs/tests/ContextConfigTest.java
assertEquals(DialectVersion.SMB202, p3.getMinimumVersion()); // needs to be adjusted when default changes assertEquals(DialectVersion.SMB210, p3.getMaximumVersion()); } @Test // #226 public void testLegacyConfig () throws CIFSException { Properties prop1 = new Properties();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/DialectVersion.java
* Legacy SMB1/CIFS */ SMB1, /** * SMB 2.02 - Windows Vista+ */ SMB202(Smb2Constants.SMB2_DIALECT_0202), /** * SMB 2.1 - Windows 7/Server 2008R2 */ SMB210(Smb2Constants.SMB2_DIALECT_0210), /** * SMB 3.0 - Windows 8/Server 2012 */ SMB300(Smb2Constants.SMB2_DIALECT_0300), /** * SMB 3.0.2 - Windows 8.1/Server 2012R2 */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java
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); } List<NegotiateContextRequest> negoContexts = new LinkedList<>();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7.5K bytes - Viewed (0) -
src/test/java/jcifs/tests/AllTests.java
@Override public Map<String, String> mutate ( Map<String, String> cfg ) { cfg.put("jcifs.smb.client.minVersion", "SMB202"); cfg.put("jcifs.smb.client.maxVersion", "SMB210"); return cfg; } }); MUTATIONS.put("smb2-nego", new TestMutation() { @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 14.4K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
} protected void initProtocolVersions ( DialectVersion min, DialectVersion max ) { this.minVersion = min != null ? min : DialectVersion.SMB1; this.maxVersion = max != null ? max : DialectVersion.SMB210; if ( this.minVersion.atLeast(this.maxVersion) ) { this.maxVersion = this.minVersion; } } protected void initDisallowCompound ( String prop ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* @since 2.1 */ DialectVersion getMinimumVersion (); /** * Maximum protocol version * * Property <tt>jcifs.smb.client.maxVersion</tt> (string, default SMB210) * * @see DialectVersion * @return maximum protocol version to use/allow * @since 2.1 */ DialectVersion getMaximumVersion (); /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)