Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DurableHandleReconnect (0.08 sec)

  1. docs/smb3-features/02-persistent-handles-design.md

    ### 4.4 Durable Handle Reconnect Context
    ```java
    package jcifs.internal.smb2.persistent;
    
    public class DurableHandleReconnect extends Smb2CreateContext {
        public static final String NAME = "DHnC";  // Durable Handle Reconnect
        
        private byte[] fileId;  // 16-byte file ID from previous open
        
        public DurableHandleReconnect(byte[] fileId) {
            super(NAME);
            if (fileId.length != 16) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

         * @param fileId the 16-byte file ID from the previous open
         */
        public void addDurableHandleReconnectContext(byte[] fileId) {
            addCreateContext(new jcifs.internal.smb2.persistent.DurableHandleReconnect(fileId));
        }
    
        /**
         * Check if this request has durable handle contexts
         * @return true if durable handle contexts are present
         */
        public boolean hasDurableHandleContext() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
Back to top