- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 169 for 0x18 (0.04 sec)
-
src/test/java/jcifs/internal/TreeConnectResponseTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/util/SMBUtilTest.java
byte[] dst = new byte[12]; // Test with simple value SMBUtil.writeInt4(0x12345678L, dst, 0); assertEquals((byte) 0x78, dst[0]); assertEquals((byte) 0x56, dst[1]); assertEquals((byte) 0x34, dst[2]); assertEquals((byte) 0x12, dst[3]); // Test with max value for 4 bytes SMBUtil.writeInt4(0xFFFFFFFFL, dst, 4); assertEquals((byte) 0xFF, dst[4]);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java
*/ public static final byte TRANS2_GET_DFS_REFERRAL = (byte) 0x10; /** * SMB TRANS2 subcommand for querying file information */ public static final byte TRANS2_QUERY_FILE_INFORMATION = (byte) 0x07; /** * SMB TRANS2 subcommand for setting file information */ public static final byte TRANS2_SET_FILE_INFORMATION = (byte) 0x08; /** * Network share enumeration subcommand */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
/** * SMB command to check if a directory exists. */ public static final byte SMB_COM_CHECK_DIRECTORY = (byte) 0x10; /** * SMB command to seek within a file. */ public static final byte SMB_COM_SEEK = (byte) 0x12; /** * SMB command for file locking operations. */ public static final byte SMB_COM_LOCKING_ANDX = (byte) 0x24; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComLockingAndX.java
final int start = bufferIndex; this.fid = SMBUtil.readInt2(buffer, bufferIndex); bufferIndex += 2; this.typeOfLock = buffer[bufferIndex]; if ((this.typeOfLock & 0x10) == 0x10) { this.largeFile = true; } this.newOpLockLevel = buffer[bufferIndex + 1]; bufferIndex += 2; this.timeout = SMBUtil.readInt4(buffer, bufferIndex);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComOpenAndX.java
private static final int SHARING_DENY_WRITE = 0x20; private static final int SHARING_DENY_READ_EXECUTE = 0x30; private static final int SHARING_DENY_NONE = 0x40; private static final int DO_NOT_CACHE = 0x1000; // bit 12 private static final int WRITE_THROUGH = 0x4000; // bit 14 private static final int OPEN_FN_CREATE = 0x10;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateResponseTest.java
SMBUtil.writeInt2(0x20, ctx, ci + 2); // DataOffset ci += 4; SMBUtil.writeInt4(8, ctx, ci); // DataLength ci += 4; // Name bytes at 0x10 byte[] name = new byte[] { 'T', 'E', 'S', 'T' }; System.arraycopy(name, 0, ctx, 0x10, name.length); // Data bytes at 0x20 byte[] data = new byte[] { 1, 2, 3, 4, 5, 6, 7, 8 }; System.arraycopy(data, 0, ctx, 0x20, data.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/av/AvPairTest.java
assertEquals(0x6, AvPair.MsvAvFlags, "MsvAvFlags constant should be 0x6."); assertEquals(0x7, AvPair.MsvAvTimestamp, "MsvAvTimestamp constant should be 0x7."); assertEquals(0x08, AvPair.MsvAvSingleHost, "MsvAvSingleHost constant should be 0x08."); assertEquals(0x09, AvPair.MsvAvTargetName, "MsvAvTargetName constant should be 0x09."); assertEquals(0x0A, AvPair.MsvAvChannelBindings, "MsvAvChannelBindings constant should be 0x0A.");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/jcifs/netbios/SessionServicePacketTest.java
byte[] headerData = { (byte) 0x81, (byte) 0x00, (byte) 0x00, (byte) 0x44 }; ByteArrayInputStream bais = new ByteArrayInputStream(headerData); byte[] buffer = new byte[10]; int type = SessionServicePacket.readPacketType(bais, buffer, 0); assertEquals(0x81, type); assertEquals((byte) 0x81, buffer[0]); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java
static final byte SMB_COM_DELETE = (byte) 0x06; static final byte SMB_COM_RENAME = (byte) 0x07; static final byte SMB_COM_QUERY_INFORMATION = (byte) 0x08; static final byte SMB_COM_WRITE = (byte) 0x0B; static final byte SMB_COM_CHECK_DIRECTORY = (byte) 0x10; static final byte SMB_COM_TRANSACTION = (byte) 0x25; static final byte SMB_COM_TRANSACTION_SECONDARY = (byte) 0x26;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.7K bytes - Viewed (0)