- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for setSubCommand (0.12 sec)
-
src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralResponse.java
/** * * @param config */ public Trans2GetDfsReferralResponse ( Configuration config ) { super(config); this.setSubCommand(SmbComTransaction.TRANS2_GET_DFS_REFERRAL); } /** * @return the buffer */ public DfsReferralResponseBuffer getDfsResponse () { return this.dfsResponse; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponse.java
/** * * @param config */ public Trans2SetFileInformationResponse ( Configuration config ) { super(config); this.setSubCommand(SmbComTransaction.TRANS2_SET_FILE_INFORMATION); } @Override protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) { return 0; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java
* @param informationLevel */ public Trans2QueryPathInformationResponse ( Configuration config, int informationLevel ) { super(config); this.informationLevel = informationLevel; this.setSubCommand(SmbComTransaction.TRANS2_QUERY_PATH_INFORMATION); } /** * @return the info */ public final FileInformation getInfo () { return this.info; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java
*/ public final byte getSubCommand () { return this.subCommand; } /** * @param subCommand * the subCommand to set */ public final void setSubCommand ( byte subCommand ) { this.subCommand = subCommand; } /** * @return the status */ public final int getStatus () { return this.status; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 9.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponse.java
public Trans2QueryFSInformationResponse ( Configuration config, int informationLevel ) { super(config); this.informationLevel = informationLevel; this.setCommand(SMB_COM_TRANSACTION2); this.setSubCommand(SmbComTransaction.TRANS2_QUERY_FS_INFORMATION); } /** * @return the informationLevel */ public int getInformationLevel () { return this.informationLevel; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 13 15:13:49 UTC 2021 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/NetServerEnumIterator.java
if ( this.workgroup && this.response.getStatus() == WinError.ERROR_MORE_DATA ) { this.request.reset(0, this.response.getLastName()); this.response.reset(); this.request.setSubCommand(SmbComTransaction.NET_SERVER_ENUM3); this.treeHandle.send(this.request, this.response); checkStatus(); this.ridx = 0; return advance(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java
*/ public final byte getSubCommand () { return this.subCommand; } /** * @param subCommand * the subCommand to set */ public final void setSubCommand ( byte subCommand ) { this.subCommand = subCommand; } @Override public void reset () { super.reset(); this.isPrimary = this.hasMore = true; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 13:43:42 UTC 2020 - 13.2K bytes - Viewed (0)