- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for errorContextCount (0.07 sec)
-
src/test/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponseTest.java
private static byte[] buildErrorBody(int errorContextCount, int bc, byte[] errorData) { int bodyLen = 8 + bc; // 8 bytes fixed + variable data byte[] buf = new byte[bodyLen]; SMBUtil.writeInt2(9, buf, 0); // structureSize buf[2] = (byte) errorContextCount; // ErrorContextCount // one reserved byte at position 3 SMBUtil.writeInt4(bc, buf, 4); // ByteCount
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
return this.errorData; } /** * Gets the error context count for this message. * * @return the errorContextCount */ public final byte getErrorContextCount() { return this.errorContextCount; } /** * Gets the header start position for this message. * * @return the headerStart */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0)