Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for DH2Q (0.01 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

                return new LeaseV2CreateContextResponse();
            case "DHnQ": // Durable Handle Request/Response
                return new jcifs.internal.smb2.persistent.DurableHandleResponse();
            case "DH2Q": // Durable Handle V2 Request/Response
                return new jcifs.internal.smb2.persistent.DurableHandleV2Response();
            case "DHnC": // Durable Handle Reconnect Request/Response
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 24 00:49:49 GMT 2025
    - 15.4K bytes
    - Click Count (0)
  2. docs/smb3-features/02-persistent-handles-design.md

    }
    ```
    
    ### 4.3 Durable Handle V2 Request Context
    ```java
    package jcifs.internal.smb2.persistent;
    
    public class DurableHandleV2Request extends Smb2CreateContext {
        public static final String NAME = "DH2Q";  // Durable Handle V2 Request
        
        private long timeout;
        private int flags;
        private HandleGuid createGuid;
        
        public DurableHandleV2Request(long timeout, boolean persistent) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 02:53:50 GMT 2025
    - 31.6K bytes
    - Click Count (0)
Back to Top