- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 192 for Reserved1 (0.05 sec)
-
src/main/java/jcifs/internal/smb2/persistent/DurableHandleRequest.java
private static final byte[] CONTEXT_NAME_BYTES = CONTEXT_NAME.getBytes(); private static final int STRUCTURE_SIZE = 16; private long reserved; // Must be zero /** * Create a new durable handle request */ public DurableHandleRequest() { this.reserved = 0; } @Override public byte[] getName() { return CONTEXT_NAME_BYTES; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDesc.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/LeaseV2CreateContextResponse.java
bufferIndex += 4; this.leaseFlags = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; // LeaseDuration (8 bytes) - reserved, skip bufferIndex += 8; byte[] parentKeyBytes = new byte[16]; System.arraycopy(buffer, bufferIndex, parentKeyBytes, 0, 16); this.parentLeaseKey = new Smb2LeaseKey(parentKeyBytes);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 3.6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComNtTransactionTest.java
int bytesWritten = smbComNtTransaction.writeParameterWordsWireFormat(dst, 0); // 1 (reserved) + 2 (reserved) + 4 (totalParameterCount) + 4 (totalDataCount) + // 4 (parameterCount) + 4 (parameterOffset) + 4 (parameterDisplacement) + // 4 (dataCount) + 4 (dataOffset) + 4 (dataDisplacement) + 1 (reserved) assertEquals(36, bytesWritten, "Number of bytes written should be 36 for secondary transaction");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2QueryPathInformationTest.java
assertEquals((byte) (informationLevel & 0xFF), dst[0]); assertEquals((byte) ((informationLevel >> 8) & 0xFF), dst[1]); // Check reserved bytes for (int i = 2; i < 6; i++) { assertEquals((byte) 0x00, dst[i], "Reserved byte at index " + i + " should be 0."); } // Check filename byte[] filenameBytes = filename.getBytes();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponseTest.java
// dataDisplacement (4 bytes) SMBUtil.writeInt4(0, buffer, bufferIndex + 31); // setupCount (1 byte) + 1 reserved byte buffer[bufferIndex + 35] = 0x00; // setupCount = 0 buffer[bufferIndex + 36] = 0x00; // reserved int bytesRead = response.readParameterWordsWireFormat(buffer, bufferIndex); // Verify the correct number of bytes were read (37 bytes total)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNtTransactionResponse.java
final int start = bufferIndex; buffer[bufferIndex] = (byte) 0x00; // Reserved bufferIndex++; buffer[bufferIndex++] = (byte) 0x00; // Reserved buffer[bufferIndex++] = (byte) 0x00; // Reserved totalParameterCount = readInt4(buffer, bufferIndex); if (bufDataStart == 0) { bufDataStart = totalParameterCount;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.3K bytes - Viewed (0) -
LICENSES/vendor/github.com/fsnotify/fsnotify/LICENSE
= vendor/github.com/fsnotify/fsnotify licensed under: = Copyright © 2012 The Go Authors. All rights reserved. Copyright © fsnotify Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Oct 13 05:24:55 UTC 2022 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2TransformHeader.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/util/SMBUtil.java
(byte) 64, (byte) 0x00, // StructureSize (LE) (byte) 0x00, (byte) 0x00, // CreditCharge (reserved 2.0.2) (byte) 0x00, (byte) 0x00, // ChannelSequence (byte) 0x00, (byte) 0x00, // Reserved (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, // Status (byte) 0x00, (byte) 0x00, // Command
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8K bytes - Viewed (0)