Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getDurableHandleGuid (0.07 sec)

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

        }
    
        /**
         * Get the durable handle GUID from the response
         * @return the durable handle GUID or null if no durable handle was granted
         */
        public jcifs.internal.smb2.persistent.HandleGuid getDurableHandleGuid() {
            // For now, return null as the GUID is typically provided in the request context
            // and the response doesn't necessarily contain the GUID in a standard format
            return null;
        }
    
    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/main/java/jcifs/smb/SmbFile.java

                        if (persistentManager != null) {
                            persistentManager.storeHandle(uncPath, resp.getFileId(), resp.getDurableHandleGuid());
                        }
                    }
    
                    // Update lease state if granted
                    if (config.isUseLeases() && resp.isLeaseGranted()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top