- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 10 for Trans2QueryFSInformation (0.52 seconds)
-
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) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.9K bytes - Click Count (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;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 2.7K bytes - Click Count (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];
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 18.9K bytes - Click Count (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");
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 4.5K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponseTest.java
Shinsuke Sugaya <******@****.***> 1755149504 +0900
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 17.9K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/Trans2QueryFSInformationResponseTest.java
Shinsuke Sugaya <******@****.***> 1755149504 +0900
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 8.6K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponse.java
Shinsuke Sugaya <******@****.***> 1755307968 +0900
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryFSInformationResponse.java
Shinsuke Sugaya <******@****.***> 1755155678 +0900
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 5.1K bytes - Click Count (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) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 112.2K bytes - Click Count (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;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 103.2K bytes - Click Count (0)