- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for informationLevel (0.05 sec)
-
src/test/java/jcifs/smb1/smb1/Trans2QueryPathInformationTest.java
// Then assertEquals(dst.length, bytesWritten, "The number of bytes written should match the expected length."); // Check informationLevel assertEquals((byte) (informationLevel & 0xFF), dst[0]); assertEquals((byte) ((informationLevel >> 8) & 0xFF), dst[1]); // Check reserved bytes for (int i = 2; i < 6; i++) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformation.java
super(config, SMB_COM_TRANSACTION2, TRANS2_QUERY_PATH_INFORMATION); this.path = filename; this.informationLevel = informationLevel; this.totalDataCount = 0; this.maxParameterCount = 2; this.maxDataCount = 40; this.maxSetupCount = (byte) 0x00; } @Override protected int writeSetupWireFormat(final byte[] dst, int dstIndex) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2.java
+ ",searchCount=" + this.maxItems + ",flags=0x" + Hexdump.toHexString(this.tflags, 2) + ",informationLevel=0x" + Hexdump.toHexString(this.informationLevel, 3) + ",searchStorageType=" + this.searchStorageType + ",filename=" + this.path + "]"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformation.java
private final int informationLevel; /** * Constructs a Trans2QueryFSInformation request. * * @param config the SMB configuration * @param informationLevel the file system information level to query */ public Trans2QueryFSInformation(final Configuration config, final int informationLevel) { super(config, SMB_COM_TRANSACTION2, TRANS2_QUERY_FS_INFORMATION);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryFSInformation.java
import jcifs.smb1.util.Hexdump; class Trans2QueryFSInformation extends SmbComTransaction { private final int informationLevel; Trans2QueryFSInformation(final int informationLevel) { command = SMB_COM_TRANSACTION2; subCommand = TRANS2_QUERY_FS_INFORMATION; this.informationLevel = informationLevel; totalParameterCount = 2; totalDataCount = 0; maxParameterCount = 0;
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/smb1/smb1/Trans2FindNext2.java
} @Override public String toString() { return ("Trans2FindNext2[" + super.toString() + ",sid=" + sid + ",searchCount=" + Trans2FindFirst2.LIST_SIZE + ",informationLevel=0x" + Hexdump.toHexString(informationLevel, 3) + ",resumeKey=0x" + Hexdump.toHexString(resumeKey, 4) + ",flags=0x" + Hexdump.toHexString(flags, 2) + ",filename=" + filename + "]"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2.java
+ LIST_COUNT + ",flags=0x" + Hexdump.toHexString(flags, 2) + ",informationLevel=0x" + Hexdump.toHexString(informationLevel, 3) + ",searchStorageType=" + searchStorageType + ",filename=" + path + "]"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryPathInformation.java
import jcifs.smb1.util.Hexdump; class Trans2QueryPathInformation extends SmbComTransaction { private final int informationLevel; Trans2QueryPathInformation(final String filename, final int informationLevel) { path = filename; this.informationLevel = informationLevel; command = SMB_COM_TRANSACTION2; subCommand = TRANS2_QUERY_PATH_INFORMATION; totalDataCount = 0;
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/smb1/smb1/Trans2QueryPathInformationResponse.java
} } private final int informationLevel; Info info; Trans2QueryPathInformationResponse(final int informationLevel) { this.informationLevel = informationLevel; subCommand = SmbComTransaction.TRANS2_QUERY_PATH_INFORMATION; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java
super(config); this.informationLevel = informationLevel; this.setSubCommand(SmbComTransaction.TRANS2_QUERY_PATH_INFORMATION); } /** * Gets the file information from the response. * * @return the info */ public final FileInformation getInfo() { return this.info; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0)