Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for DURABLE_V1 (0.13 sec)

  1. 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