Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DURABLE_V1 (0.22 sec)

  1. src/test/java/jcifs/tests/persistent/DurableHandleContextTest.java

            assertEquals(0, HandleType.NONE.getValue());
            assertEquals(1, HandleType.DURABLE_V1.getValue());
            assertEquals(2, HandleType.DURABLE_V2.getValue());
            assertEquals(3, HandleType.PERSISTENT.getValue());
    
            assertEquals(HandleType.NONE, HandleType.fromValue(0));
            assertEquals(HandleType.DURABLE_V1, HandleType.fromValue(1));
            assertEquals(HandleType.DURABLE_V2, HandleType.fromValue(2));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/persistent/HandleType.java

     */
    public enum HandleType {
        /**
         * No durability - standard handle
         */
        NONE(0),
    
        /**
         * SMB 2.1 durable handle - survives network loss
         */
        DURABLE_V1(1),
    
        /**
         * SMB 3.0 durable handle V2 - with timeout configuration
         */
        DURABLE_V2(2),
    
        /**
         * SMB 3.0 persistent handle - survives server reboot
         */
        PERSISTENT(3);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/persistent/HandleInfo.java

         */
        private final HandleGuid createGuid;
    
        /**
         * The 16-byte file ID returned by the server for this handle
         */
        private final byte[] fileId;
    
        /**
         * The type of handle (DURABLE_V1, DURABLE_V2, or PERSISTENT)
         */
        private final HandleType type;
    
        /**
         * The timeout in milliseconds for durable handles (not applicable for persistent handles)
         */
        private final long timeout;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  4. docs/smb3-features/02-persistent-handles-design.md

    - **MS-SMB2 Section 3.2.1.4**: Durable Open Scavenger Timer
    
    ## 3. Handle Types and Capabilities
    
    ### 3.1 Handle Types
    ```java
    public enum HandleType {
        NONE(0),                    // No durability
        DURABLE_V1(1),              // SMB 2.1 - survives network loss
        DURABLE_V2(2),              // SMB 3.0 - with timeout
        PERSISTENT(3);              // SMB 3.0 - survives server reboot
        
        private final int value;
        
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
Back to top