Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DH2Q (0.09 sec)

  1. src/main/java/jcifs/internal/smb2/persistent/DurableHandleV2Request.java

    import jcifs.internal.util.SMBUtil;
    
    /**
     * SMB2 Durable Handle V2 Request Create Context (DH2Q)
     *
     * MS-SMB2 Section 2.2.13.2.4
     */
    public class DurableHandleV2Request implements CreateContextRequest {
    
        /**
         * Context name for durable handle V2 request
         */
        public static final String CONTEXT_NAME = "DH2Q";
    
        private static final byte[] CONTEXT_NAME_BYTES = CONTEXT_NAME.getBytes();
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/persistent/DurableHandleV2Response.java

     */
    public class DurableHandleV2Response implements CreateContextResponse {
    
        /**
         * Context name for durable handle V2 response
         */
        public static final String CONTEXT_NAME = "DH2Q";
    
        private static final byte[] CONTEXT_NAME_BYTES = CONTEXT_NAME.getBytes();
    
        private long timeout100Ns; // timeout in 100-nanosecond intervals (wire format, unsigned 32-bit)
        private int flags;
    
        /**
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 3K bytes
    - Viewed (0)
Back to top