- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 22 for getSubcommand (0.12 sec)
-
src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipe.java
this.maxSetupCount = (byte) 0x00; this.setupCount = 2; } @Override protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) { dst[ dstIndex++ ] = this.getSubCommand(); dst[ dstIndex++ ] = (byte) 0x00; // this says "Transaction priority" in netmon dst[ dstIndex++ ] = (byte) 0x00; // no FID dst[ dstIndex++ ] = (byte) 0x00; return 4; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransTransactNamedPipe.java
this.setupCount = 2; this.name = "\\PIPE\\"; } @Override protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) { dst[ dstIndex++ ] = this.getSubCommand(); dst[ dstIndex++ ] = (byte) 0x00; SMBUtil.writeInt2(this.pipeFid, dst, dstIndex); dstIndex += 2; return 4; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindNext2.java
this.resumeKey = rk; this.filename = lastName; this.flags2 = 0; } @Override protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) { dst[ dstIndex++ ] = getSubCommand(); dst[ dstIndex++ ] = (byte) 0x00; return 2; } @Override protected int writeParametersWireFormat ( byte[] dst, int dstIndex ) { int start = dstIndex;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java
return buf; } /** * @return the subCommand */ 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 () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 13:43:42 UTC 2020 - 13.2K 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: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 29.6K 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 Nov 06 11:36:14 UTC 2024 - 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 */ 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/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/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)