- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for smb30 (0.16 sec)
-
src/test/java/jcifs/tests/OplockTests.java
super(name, properties); } @Parameters ( name = "{0}" ) public static Collection<Object> configs () { return getConfigs("smb1", "smb2", "smb30", "smb31"); } @Test public void testOpenOplocked () throws UnknownHostException, IOException { CIFSContext c = getContext(); c = withTestNTLMCredentials(c);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 6.1K bytes - Viewed (0) -
src/test/java/jcifs/tests/FileAttributesTest.java
} @Parameters ( name = "{0}" ) public static Collection<Object> configs () { return getConfigs("smb1", "noUnicode", "forceUnicode", "noNTStatus", "noNTSmbs", "smb2", "smb30", "smb31"); } @Test public void testBaseFile () throws MalformedURLException, CIFSException { try ( SmbResource f = getDefaultShareRoot() ) { checkConnection(f);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 12.3K bytes - Viewed (0) -
src/test/java/jcifs/tests/FileOperationsTest.java
} @Parameters ( name = "{0}" ) public static Collection<Object> configs () { return getConfigs("smb1", "noUnicode", "forceUnicode", "noNTStatus", "noNTSmbs", "smb2", "smb30", "smb31"); } @Test public void testRenameFile () throws CIFSException, MalformedURLException, UnknownHostException { try ( SmbFile defaultShareRoot = getDefaultShareRoot();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:17:59 UTC 2023 - 16.3K bytes - Viewed (0) -
src/test/java/jcifs/tests/SessionTest.java
"noSpnegoIntegrity", "rawNTLM", "noUnicode", "forceUnicode", "noNTStatus", "smb2", "smb2-nego", "smb30", "smb31"); } @Test public void logonUser () throws IOException { try ( SmbResource f = getDefaultShareRoot() ) { checkConnection(f);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 15.8K bytes - Viewed (0) -
src/test/java/jcifs/tests/EnumTest.java
} @Parameters ( name = "{0}" ) public static Collection<Object> configs () { return getConfigs("smb1", "noUnicode", "forceUnicode", "noNTStatus", "noNTSmbs", "smb2", "smb30", "smb31"); } @Ignore ( "This causes a connection to whatever local master browser is available, config may be incompatible with it" ) @Test
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 25.5K bytes - Viewed (0) -
src/test/java/jcifs/tests/ContextConfigTest.java
prop1.setProperty("jcifs.smb.client.minVersion", "SMB302"); PropertyConfiguration p1 = new PropertyConfiguration(prop1); assertEquals(DialectVersion.SMB302, p1.getMinimumVersion()); assertEquals(DialectVersion.SMB302, p1.getMaximumVersion()); Properties prop2 = new Properties(); prop2.setProperty("jcifs.smb.client.maxVersion", "SMB302");
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 9.9K bytes - Viewed (0) -
README.md
``` <dependency> <groupId>org.codelibs</groupId> <artifactId>jcifs</artifactId> <version>2.1.34</version> </dependency> ``` ## Changes * SMB2 (2.02 protocol level) support, some SMB3 support * Remove global state * Allow per context configuration * Logging through SLF4J * Drop pre-java 1.7 support * Unify authentication subsystem, NTLMSSP/Kerberos support * Large ReadX/WriteX support
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed May 10 09:29:34 UTC 2023 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
if ( nego.getSelectedDialect().atLeast(DialectVersion.SMB311) ) { // have preauth integrity instead log.debug("Secure negotiation does not apply, is SMB3.1"); return; } Smb2NegotiateRequest negoReq = new Smb2NegotiateRequest(sess.getConfig(), trans.getRequestSecurityMode(nego)); log.debug("Sending VALIDATE_NEGOTIATE_INFO");
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 29.6K bytes - Viewed (0) -
configure.py
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 02 22:16:02 UTC 2024 - 48.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
if ( resp.getSelectedDialect().atLeast(DialectVersion.SMB311) ) { cipherId = resp.getSelectedCipher(); } else if ( resp.getSelectedDialect().atLeast(DialectVersion.SMB300) ) { cipherId = EncryptionNegotiateContext.CIPHER_AES128_CCM; } else { throw new SmbUnsupportedOperationException(); } switch ( cipherId ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0)