Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for updateHandleFileId (1.85 sec)

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

        }
    
        /**
         * Update the file ID for a handle after successful create response
         * @param guid the handle GUID
         * @param fileId the 16-byte file ID
         */
        public void updateHandleFileId(HandleGuid guid, byte[] fileId) {
            lock.writeLock().lock();
            try {
                HandleInfo info = guidToHandle.get(guid);
                if (info != null) {
                    info.updateFileId(fileId);
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13K bytes
    - Viewed (0)
  2. docs/smb3-features/02-persistent-handles-design.md

            guidToHandle.put(guid, info);
            
            if (type == HandleType.PERSISTENT) {
                persistHandle(info);
            }
            
            return guid;
        }
        
        public void updateHandleFileId(HandleGuid guid, byte[] fileId) {
            HandleInfo info = guidToHandle.get(guid);
            if (info != null) {
                System.arraycopy(fileId, 0, info.fileId, 0, 16);
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
Back to top