- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for Trans2QueryFSInformation (0.25 sec)
-
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 int informationLevel; Trans2QueryFSInformation( int informationLevel ) { command = SMB_COM_TRANSACTION2; subCommand = TRANS2_QUERY_FS_INFORMATION; this.informationLevel = informationLevel;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformation.java
import jcifs.internal.util.SMBUtil; import jcifs.util.Hexdump; /** * */ public class Trans2QueryFSInformation extends SmbComTransaction { private int informationLevel; /** * * @param config * @param informationLevel */ public Trans2QueryFSInformation ( Configuration config, int informationLevel ) { super(config, SMB_COM_TRANSACTION2, TRANS2_QUERY_FS_INFORMATION);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.5K 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 Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
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 ) { Info info = queryPath( getUncPath0(),
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 107.9K bytes - Viewed (0)