- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for isExtended (0.04 sec)
-
src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java
* signing verification failure. */ if (command == SMB_COM_NT_CREATE_ANDX && ((SmbComNTCreateAndXResponse) this).isExtended) { wordCount += 8; } } bufferIndex = start + 1 + wordCount * 2; } byteCount = readInt2(buffer, bufferIndex);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.9K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/AndXServerMessageBlockTest.java
return 33; } }; // Set command to NT_CREATE_ANDX and mark extended resp.command = ServerMessageBlock.SMB_COM_NT_CREATE_ANDX; resp.isExtended = true; byte[] buf = new byte[256]; buf[33] = 34; // baseline wordCount reported by server buf[34] = (byte) 0xFF; // no further andx // byteCount at 33 + 1 + 34*2 = 102
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java
* signing verification failure. */ if (this.getCommand() == SMB_COM_NT_CREATE_ANDX && ((SmbComNTCreateAndXResponse) this).isExtended() && ((SmbComNTCreateAndXResponse) this).getFileType() != 1) { this.wordCount += 8; } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.8K bytes - Viewed (0)