- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for SMB2_FLUSH (0.13 sec)
-
src/main/java/jcifs/internal/smb2/io/Smb2FlushRequest.java
* @param config the client configuration * @param fileId the file identifier to flush */ public Smb2FlushRequest(final Configuration config, final byte[] fileId) { super(config, SMB2_FLUSH); this.fileId = fileId; } @Override protected Smb2FlushResponse createResponse(final CIFSContext tc, final ServerMessageBlock2Request<Smb2FlushResponse> req) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2FlushRequestTest.java
void testConstructor() throws Exception { // Verify command is set correctly (SMB2_FLUSH = 0x0007) Field commandField = ServerMessageBlock2.class.getDeclaredField("command"); commandField.setAccessible(true); int command = (int) commandField.get(request); assertEquals(0x0007, command); // SMB2_FLUSH value // Verify file ID is set
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/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
case SMB2_TREE_CONNECT -> "SMB2_TREE_CONNECT"; case SMB2_TREE_DISCONNECT -> "SMB2_TREE_DISCONNECT"; case SMB2_CREATE -> "SMB2_CREATE"; case SMB2_CLOSE -> "SMB2_CLOSE"; case SMB2_FLUSH -> "SMB2_FLUSH"; case SMB2_READ -> "SMB2_READ"; case SMB2_WRITE -> "SMB2_WRITE"; case SMB2_LOCK -> "SMB2_LOCK"; case SMB2_IOCTL -> "SMB2_IOCTL"; case SMB2_CANCEL -> "SMB2_CANCEL";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java
assertEquals(0x05, ServerMessageBlock2.SMB2_CREATE); assertEquals(0x06, ServerMessageBlock2.SMB2_CLOSE); assertEquals(0x07, ServerMessageBlock2.SMB2_FLUSH); assertEquals(0x08, ServerMessageBlock2.SMB2_READ); assertEquals(0x09, ServerMessageBlock2.SMB2_WRITE); assertEquals(0x0A, ServerMessageBlock2.SMB2_LOCK);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 39.5K bytes - Viewed (0)