SmbComClosepublic class SmbComClose extends ServerMessageBlock
Fields Summary |
---|
private int | fid | private long | lastWriteTime |
Constructors Summary |
---|
SmbComClose(int fid, long lastWriteTime)
this.fid = fid;
this.lastWriteTime = lastWriteTime;
command = SMB_COM_CLOSE;
|
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( "SmbComClose[" +
super.toString() +
",fid=" + fid +
",lastWriteTime=" + lastWriteTime + "]" );
| int | writeBytesWireFormat(byte[] dst, int dstIndex)
return 0;
| int | writeParameterWordsWireFormat(byte[] dst, int dstIndex)
writeInt2( fid, dst, dstIndex );
dstIndex += 2;
writeUTime( lastWriteTime, dst, dstIndex );
return 6;
|
|