Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Smb2OplockBreakNotification (0.28 sec)

  1. src/main/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotification.java

     *
     * @author mbechler
     *
     */
    public class Smb2OplockBreakNotification extends ServerMessageBlock2Response {
    
        private byte oplockLevel;
        private byte[] fileId;
    
        /**
         * Constructs an SMB2 oplock break notification with the given configuration.
         *
         * @param config the configuration for this notification
         */
        public Smb2OplockBreakNotification(final Configuration config) {
            super(config);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotificationTest.java

    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Hexdump;
    
    /**
     * Test class for Smb2OplockBreakNotification functionality
     */
    @DisplayName("Smb2OplockBreakNotification Tests")
    class Smb2OplockBreakNotificationTest extends BaseTest {
    
        private Configuration mockConfig;
        private Smb2OplockBreakNotification notification;
    
        @BeforeEach
        void setUp() {
            mockConfig = mock(Configuration.class);
    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/main/java/jcifs/smb/SmbTransportImpl.java

    import jcifs.internal.smb2.io.Smb2ReadResponse;
    import jcifs.internal.smb2.ioctl.Smb2IoctlRequest;
    import jcifs.internal.smb2.ioctl.Smb2IoctlResponse;
    import jcifs.internal.smb2.lock.Smb2OplockBreakNotification;
    import jcifs.internal.smb2.nego.EncryptionNegotiateContext;
    import jcifs.internal.smb2.nego.Smb2NegotiateRequest;
    import jcifs.internal.smb2.nego.Smb2NegotiateResponse;
    import jcifs.netbios.Name;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
Back to top