Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for WriteUint8 (0.24 sec)

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

            dst[dstIndex + 3] = this.requestedOplockLevel;
            dstIndex += 4;
    
            SMBUtil.writeInt4(this.impersonationLevel, dst, dstIndex);
            dstIndex += 4;
            SMBUtil.writeInt8(this.smbCreateFlags, dst, dstIndex);
            dstIndex += 8;
            dstIndex += 8; // Reserved
    
            SMBUtil.writeInt4(this.desiredAccess, dst, dstIndex);
            dstIndex += 4;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  2. docs/smb3-features/04-directory-leasing-design.md

            
            // CacheScope (4 bytes)
            writeInt4(buffer, dataOffset, cacheScope.ordinal());
            dataOffset += 4;
            
            // MaxCacheAge (8 bytes)
            writeInt8(buffer, dataOffset, maxCacheAge);
            dataOffset += 8;
            
            // Flags (4 bytes)
            int flags = 0;
            if (cacheScope == DirectoryCacheScope.RECURSIVE_TREE) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  3. docs/smb3-features/05-rdma-smb-direct-design.md

        
        if (rdmaChannelInfo != null) {
            // Add RDMA read channel info
            writeInt4(dst, dstIndex + written, rdmaChannelInfo.getRemoteKey());
            written += 4;
            writeInt8(dst, dstIndex + written, rdmaChannelInfo.getAddress());
            written += 8;
            writeInt4(dst, dstIndex + written, rdmaChannelInfo.getLength());
            written += 4;
        }
        
        return written;
    }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  4. docs/smb3-features/03-multi-channel-design.md

            
            // Capability (4 bytes)
            writeInt4(buffer, 4, capability);
            
            // Reserved (4 bytes)
            writeInt4(buffer, 8, 0);
            
            // LinkSpeed (8 bytes)
            writeInt8(buffer, 12, linkSpeed * 1000000L);  // Convert to bps
            
            // SockaddrStorage (128 bytes)
            encodeSockaddr(buffer, 20);
            
            return buffer;
        }
        
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  5. src/test/java/jcifs/ntlmssp/av/AvPairsTest.java

            SMBUtil.writeInt4(0xAABBCCDD, flagData, 0);
            byte[] avFlagsData = createAvPairData(AvPair.MsvAvFlags, flagData);
    
            byte[] timestampData = new byte[8];
            SMBUtil.writeInt8(0x0123456789ABCDEFL, timestampData, 0);
            byte[] avTimestampData = createAvPairData(AvPair.MsvAvTimestamp, timestampData);
    
            byte[] targetNameData = "TEST".getBytes();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
Back to top