SmbComFindClose2public class SmbComFindClose2 extends ServerMessageBlock
Fields Summary |
---|
private int | sid |
Constructors Summary |
---|
SmbComFindClose2(int sid)
this.sid = sid;
command = SMB_COM_FIND_CLOSE2;
|
Methods Summary |
---|
int | readBytesWireFormat(byte[] buffer, int bufferIndex)
return 0;
| int | readParameterWordsWireFormat(byte[] buffer, int bufferIndex)
return 0;
| public java.lang.String | toString()
return new String( "SmbComFindClose2[" +
super.toString() +
",sid=" + sid + "]" );
| int | writeBytesWireFormat(byte[] dst, int dstIndex)
return 0;
| int | writeParameterWordsWireFormat(byte[] dst, int dstIndex)
writeInt2( sid, dst, dstIndex );
return 2;
|
|