- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 550 for flags2 (0.34 sec)
-
src/main/java/jcifs/internal/smb1/trans2/Trans2FindNext2.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNegotiateResponse.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponseTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.9K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameServicePacketTest.java
assertEquals((byte) 0x34, dst[1]); assertEquals((byte) (0x80 | (NameServicePacket.QUERY << 3) | 0x04 | 0x02 | 0x01), dst[2]); // flags1 assertEquals((byte) (0x80 | 0x10 | NameServicePacket.FMT_ERR), dst[3]); // flags2 assertEquals((byte) 0x00, dst[4]); // questionCount assertEquals((byte) 0x01, dst[5]); assertEquals((byte) 0x00, dst[6]); // answerCount
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.9K bytes - Viewed (0) -
src/test/java/jcifs/SmbConstantsTest.java
assertEquals("Cp850", SmbConstants.DEFAULT_OEM_ENCODING); assertEquals(-1, SmbConstants.FOREVER); } @Test @DisplayName("Should validate flag combinations work correctly") void testFlagCombinations() { // Test that flags can be combined with bitwise OR int combinedShareAccess = SmbConstants.FILE_SHARE_READ | SmbConstants.FILE_SHARE_WRITE; assertEquals(0x03, combinedShareAccess);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComNegotiateResponseTest.java
// Setup server data for this scenario serverData.capabilities = 0; // No extended security serverData.encryptionKeyLength = 8; response.flags2 = ServerMessageBlock.FLAGS2_UNICODE; byte[] domainNameBytes = "DOMAIN_U".getBytes("UTF-16LE"); response.byteCount = 8 + domainNameBytes.length + 2; // key + domain + null terminator
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTree.java
* \server\share\path\to\file * as opposed to normally * \path\to\file */ request.flags2 = SmbConstants.FLAGS2_RESOLVE_PATHS_IN_DFS; request.path = '\\' + session.transport().tconHostName + '\\' + share + request.path; } try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbTreeTest.java
// For A: service with DFS, path should be modified (share name is uppercased) assertEquals("\\testHost\\TESTSHARE\\testPath", request.path); assertEquals(ServerMessageBlock.FLAGS2_RESOLVE_PATHS_IN_DFS, request.flags2 & ServerMessageBlock.FLAGS2_RESOLVE_PATHS_IN_DFS); } @Test void testSendWithDfsIpcService() throws SmbException { SmbTree tree = new SmbTree(session, "testShare", "IPC");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* * @return custom capabilities */ int getCapabilities(); /** * * * Property {@code jcifs.smb.client.flags2} (int) * * @return custom flags2 */ int getFlags2(); /** * * Property {@code jcifs.smb.client.ssnLimit} (int, 250) * * @return maximum number of sessions on a single connection
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
src/main/java/jcifs/SmbConstants.java
/** * No flags2 set in SMB header. */ int FLAGS2_NONE = 0x0000; /** * Long file names are supported flag. */ int FLAGS2_LONG_FILENAMES = 0x0001; /** * Extended attributes are supported flag. */ int FLAGS2_EXTENDED_ATTRIBUTES = 0x0002; /** * Security signatures are supported flag. */ int FLAGS2_SECURITY_SIGNATURES = 0x0004; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 12.8K bytes - Viewed (0)