- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for SMB2_OPLOCK_LEVEL_EXCLUSIVE (0.46 sec)
-
src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java
assertEquals(Smb2CreateRequest.SMB2_OPLOCK_LEVEL_BATCH, buffer[3]); request.setRequestedOplockLevel(Smb2CreateRequest.SMB2_OPLOCK_LEVEL_EXCLUSIVE); request.writeBytesWireFormat(buffer, 0); assertEquals(Smb2CreateRequest.SMB2_OPLOCK_LEVEL_EXCLUSIVE, buffer[3]); } @Test @DisplayName("Test impersonation level setter") void testSetImpersonationLevel() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotificationTest.java
return Stream.of(Arguments.of((byte) 0x00, "SMB2_OPLOCK_LEVEL_NONE"), Arguments.of((byte) 0x01, "SMB2_OPLOCK_LEVEL_II"), Arguments.of((byte) 0x08, "SMB2_OPLOCK_LEVEL_EXCLUSIVE"), Arguments.of((byte) 0x09, "SMB2_OPLOCK_LEVEL_BATCH"), Arguments.of((byte) 0xFF, "SMB2_OPLOCK_LEVEL_LEASE")); } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
/** * Level II oplock */ public static final byte SMB2_OPLOCK_LEVEL_II = 0x1; /** * Exclusive oplock */ public static final byte SMB2_OPLOCK_LEVEL_EXCLUSIVE = 0x8; /** * Batch oplock */ public static final byte SMB2_OPLOCK_LEVEL_BATCH = 0x9; /** * Lease-based oplock */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 22.9K bytes - Viewed (0)