- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getIoctlFlags (0.13 seconds)
-
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java
*/ public int getCtlCode() { return this.ctlCode; } /** * Gets the IOCTL flags from the response. * * @return the ioctlFlags */ public int getIoctlFlags() { return this.ioctlFlags; } /** * Gets the file identifier from the response. * * @return the fileId */ public byte[] getFileId() {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 8.9K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponseTest.java
Smb2IoctlResponse resp = new Smb2IoctlResponse(config); resp.decode(packet, 0); assertEquals(Smb2IoctlRequest.FSCTL_SRV_COPYCHUNK, resp.getCtlCode()); assertEquals(0x1234, resp.getIoctlFlags()); assertNotNull(resp.getFileId()); assertEquals(16, resp.getFileId().length); assertEquals(12, resp.getOutputLength());
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.9K bytes - Click Count (0)