Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SMB2_OPLOCK_LEVEL_LEASE (2.83 sec)

  1. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

        /**
         * Batch oplock
         */
        public static final byte SMB2_OPLOCK_LEVEL_BATCH = 0x9;
        /**
         * Lease-based oplock
         */
        public static final byte SMB2_OPLOCK_LEVEL_LEASE = (byte) 0xFF;
    
        /**
         * Anonymous impersonation level - client cannot obtain identification information about itself
         */
        public static final int SMB2_IMPERSONATION_LEVEL_ANONYMOUS = 0x0;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotificationTest.java

                        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)
  3. src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java

            assertEquals((byte) 0x8, Smb2CreateRequest.SMB2_OPLOCK_LEVEL_EXCLUSIVE);
            assertEquals((byte) 0x9, Smb2CreateRequest.SMB2_OPLOCK_LEVEL_BATCH);
            assertEquals((byte) 0xFF, Smb2CreateRequest.SMB2_OPLOCK_LEVEL_LEASE);
        }
    
        @Test
        @DisplayName("Test all impersonation level constants")
        void testImpersonationLevelConstants() {
            assertEquals(0x0, Smb2CreateRequest.SMB2_IMPERSONATION_LEVEL_ANONYMOUS);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 18.6K bytes
    - Viewed (0)
Back to top