- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getMessageLength (0.08 sec)
-
src/test/java/jcifs/internal/smb2/ioctl/SrvPipePeekResponseTest.java
assertEquals(readDataAvailable, response.getReadDataAvailable()); assertEquals(numberOfMessages, response.getNumberOfMessages()); assertEquals(messageLength, response.getMessageLength()); assertArrayEquals(testData, response.getData()); // The decode method returns only the header size (16 bytes)\n assertEquals(16, bytesDecoded); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/SrvPipePeekResponse.java
public int getNumberOfMessages() { return this.numberOfMessages; } /** * Gets the length of the first message in the pipe * @return the messageLength */ public int getMessageLength() { return this.messageLength; } /** * Gets the data peeked from the pipe * @return the data */ public byte[] getData() { return this.data; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponseTest.java
// Default zeros assertEquals(0, peek.getNamedPipeState()); assertEquals(0, peek.getReadDataAvailable()); assertEquals(0, peek.getNumberOfMessages()); assertEquals(0, peek.getMessageLength()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0)