- Sort Score
- Result 10 results
- Languages All
Results 31 - 39 of 39 for getSubcommand (0.34 sec)
-
src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java
* Gets the transaction subcommand * @return the subCommand */ public final byte getSubCommand() { return this.subCommand; } /** * Sets the transaction subcommand * @param subCommand * the subCommand to set */ public final void setSubCommand(final byte subCommand) { this.subCommand = subCommand; } @OverrideRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
break; case ServerMessageBlock.SMB_COM_TRANSACTION: case ServerMessageBlock.SMB_COM_TRANSACTION2: switch (((SmbComTransaction) request).getSubCommand() & 0xFF) { case SmbComTransaction.NET_SHARE_ENUM: case SmbComTransaction.NET_SERVER_ENUM2: case SmbComTransaction.NET_SERVER_ENUM3:Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
.teamcity/.mvn/wrapper/maven-wrapper.jar
subcommand; private String deprecationWarning; private boolean incubating; public void CommandLineOption(Iterable); public java.util.Set getOptions(); public CommandLineOption hasArgument(); public CommandLineOption hasArguments(); public String getSubcommand(); public CommandLineOption mapsToSubcommand(String); public String getDescription(); public CommandLineOption hasDescription(String); public boolean getAllowsArguments(); public boolean getAllowsMultipleArg(); public CommandLineOption deprecated(String);...
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Feb 26 01:48:39 UTC 2020 - 49.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralResponse.java
* * @param config the SMB configuration */ public Trans2GetDfsReferralResponse(final Configuration config) { super(config); this.setSubCommand(SmbComTransaction.TRANS2_GET_DFS_REFERRAL); } /** * Gets the DFS referral response buffer containing the referral data. * * @return the buffer */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponse.java
* * @param config the SMB configuration */ public Trans2SetFileInformationResponse(final Configuration config) { super(config); this.setSubCommand(SmbComTransaction.TRANS2_SET_FILE_INFORMATION); } @Override protected int writeSetupWireFormat(final byte[] dst, final int dstIndex) { return 0; } @OverrideRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponse.java
super(config); this.informationLevel = informationLevel; this.setCommand(SMB_COM_TRANSACTION2); this.setSubCommand(SmbComTransaction.TRANS2_QUERY_FS_INFORMATION); } /** * Gets the information level that was queried. * * @return the informationLevel */ public int getInformationLevel() {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5K 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: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java
*/ public Trans2QueryPathInformationResponse(final Configuration config, final int informationLevel) { 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() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0)