Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DHnQ (0.02 sec)

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

                return new LeaseV1CreateContextResponse();
            case LeaseV2CreateContextRequest.CONTEXT_NAME: // "RqL2"
                return new LeaseV2CreateContextResponse();
            case "DHnQ": // Durable Handle Request/Response
                return new jcifs.internal.smb2.persistent.DurableHandleResponse();
            case "DH2Q": // Durable Handle V2 Request/Response
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java

            }
    
            @Test
            @DisplayName("Should handle special SMB2 context names")
            void testSMB2ContextNames() {
                // Common SMB2 create context names
                String[] contextNames = { "DHnQ", // Durable handle request
                        "DHnC", // Durable handle reconnect
                        "AlSi", // Allocation size
                        "MxAc", // Max access
                        "TWrp", // Timewarp
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  3. docs/smb3-features/02-persistent-handles-design.md

    ```java
    package jcifs.internal.smb2.persistent;
    
    import jcifs.internal.smb2.create.Smb2CreateContext;
    
    public class DurableHandleRequest extends Smb2CreateContext {
        public static final String NAME = "DHnQ";  // Durable Handle Request
        
        private static final int STRUCTURE_SIZE = 16;
        private long reserved;  // Must be zero
        
        public DurableHandleRequest() {
            super(NAME);
    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