- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for Trans2QueryFSInformation (0.11 sec)
-
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformation.java
*/ public class Trans2QueryFSInformation extends SmbComTransaction { 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) {
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
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; 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;
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/test/java/jcifs/smb1/smb1/Trans2QueryFSInformationTest.java
void testToString() { int level = 0xABC; Trans2QueryFSInformation cmd = new Trans2QueryFSInformation(level); String str = cmd.toString(); // toString uses Hexdump.toHexString(informationLevel, 3) assertTrue(str.contains(Hexdump.toHexString(level, 3)), "toString should contain hex level"); assertTrue(str.contains("Trans2QueryFSInformation["), "should start with class name");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationTest.java
void testConstructorWithInvalidInformationLevel() { // The exception is thrown during writeParametersWireFormat when mapInformationLevel is called Trans2QueryFSInformation trans2 = new Trans2QueryFSInformation(config, 99); assertNotNull(trans2); // Exception should be thrown when trying to write parameters byte[] buffer = new byte[256];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
final int level = Trans2QueryFSInformationResponse.SMB_INFO_ALLOCATION; response = new Trans2QueryFSInformationResponse(level); send(new Trans2QueryFSInformation(level), response); size = response.info.getCapacity(); } else if (getUncPath0().length() > 1 && type != TYPE_NAMED_PIPE) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
import jcifs.internal.smb1.com.SmbComSetInformationResponse; import jcifs.internal.smb1.trans.nt.NtTransQuerySecurityDesc; import jcifs.internal.smb1.trans.nt.NtTransQuerySecurityDescResponse; import jcifs.internal.smb1.trans2.Trans2QueryFSInformation; import jcifs.internal.smb1.trans2.Trans2QueryFSInformationResponse; import jcifs.internal.smb1.trans2.Trans2QueryPathInformation; import jcifs.internal.smb1.trans2.Trans2QueryPathInformationResponse;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0)