- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 55 for FID (0.01 sec)
-
src/test/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescTest.java
void testToStringMaxValues() { int fid = 0xFFFF; int securityInfo = 0xFFFFFFFF; querySecurityDesc = new NtTransQuerySecurityDesc(mockConfig, fid, securityInfo); String result = querySecurityDesc.toString(); assertNotNull(result); assertTrue(result.contains("fid=0x" + Hexdump.toHexString(fid, 4)));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComReadAndX.java
private long offset; private int fid; private final int openTimeout; int maxCount, minCount, remaining; SmbComReadAndX() { super(null); command = SMB_COM_READ_ANDX; openTimeout = 0xFFFFFFFF; } SmbComReadAndX(final int fid, final long offset, final int maxCount, final ServerMessageBlock andx) { super(andx); this.fid = fid; this.offset = offset;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComReadAndX.java
* the remaining to set */ public final void setRemaining(final int remaining) { this.remaining = remaining; } void setParam(final int fid, final long offset, final int maxCount) { this.fid = fid; this.offset = offset; this.maxCount = this.minCount = maxCount; } @Override protected int getBatchLimit(final Configuration cfg, final byte cmd) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtTransQuerySecurityDesc.java
*/ package jcifs.smb1.smb1; import jcifs.smb1.util.Hexdump; class NtTransQuerySecurityDesc extends SmbComNtTransaction { int fid; int securityInformation; NtTransQuerySecurityDesc(final int fid, final int securityInformation) { this.fid = fid; this.securityInformation = securityInformation; command = SMB_COM_NT_TRANSACT; function = NT_TRANSACT_QUERY_SECURITY_DESC;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java
super(config, andxResp); } /** * Gets the file identifier. * * @return the fid */ public final int getFid() { return this.fid; } /** * Gets the file data size. * * @return the dataSize */ public final int getDataSize() { return this.fileDataSize; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransTransactNamedPipe.java
class TransTransactNamedPipe extends SmbComTransaction { private final byte[] pipeData; private final int pipeFid, pipeDataOff, pipeDataLen; TransTransactNamedPipe(final int fid, final byte[] data, final int off, final int len) { pipeFid = fid; pipeData = data; pipeDataOff = off; pipeDataLen = len; command = SMB_COM_TRANSACTION; subCommand = TRANS_TRANSACT_NAMED_PIPE;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComOpenAndXResponse.java
int readBytesWireFormat(final byte[] buffer, final int bufferIndex) { return 0; } @Override public String toString() { return ("SmbComOpenAndXResponse[" + super.toString() + ",fid=" + fid + ",fileAttributes=" + fileAttributes + ",lastWriteTime=" + lastWriteTime + ",dataSize=" + dataSize + ",grantedAccess=" + grantedAccess + ",fileType=" + fileType + ",deviceState="
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSeek.java
* @param fid the file identifier */ public SmbComSeek(final Configuration config, final int fid) { super(config, SMB_COM_SEEK); this.fid = fid; } private int fid; private int mode; private long offset; /** * Sets the file identifier. * * @param fid * the fid to set */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComWrite.java
package jcifs.smb1.smb1; class SmbComWrite extends ServerMessageBlock { private int fid, count, offset, remaining, off; private byte[] b; SmbComWrite() { command = SMB_COM_WRITE; } SmbComWrite(final int fid, final int offset, final int remaining, final byte[] b, final int off, final int len) { this.fid = fid; this.count = len; this.offset = offset;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComWriteTest.java
// Arrange int fid = 0x1234; int offset = 100; int remaining = 50; byte[] buffer = new byte[100]; int off = 10; int len = 40; // Act SmbComWrite write = new SmbComWrite(fid, offset, remaining, buffer, off, len); // Assert assertEquals(fid, getFieldValue(write, "fid"), "FID should match constructor arg");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.8K bytes - Viewed (0)