update sharpcifs

This commit is contained in:
Luke Pulverenti
2017-07-07 23:12:21 -04:00
parent a30e22c3a2
commit 0d10dfe471
221 changed files with 23704 additions and 25614 deletions

View File

@@ -16,78 +16,72 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
namespace SharpCifs.Smb
{
internal class SmbComOpenAndXResponse : AndXServerMessageBlock
{
internal int Fid;
internal class SmbComOpenAndXResponse : AndXServerMessageBlock
{
internal int Fid;
internal int FileAttributes;
internal int FileAttributes;
internal int DataSize;
internal int DataSize;
internal int GrantedAccess;
internal int GrantedAccess;
internal int FileType;
internal int FileType;
internal int DeviceState;
internal int DeviceState;
internal int Action;
internal int Action;
internal int ServerFid;
internal int ServerFid;
internal long LastWriteTime;
internal long LastWriteTime;
internal override int WriteParameterWordsWireFormat(byte[] dst, int dstIndex)
{
return 0;
}
internal override int WriteParameterWordsWireFormat(byte[] dst, int dstIndex)
{
return 0;
}
internal override int WriteBytesWireFormat(byte[] dst, int dstIndex)
{
return 0;
}
internal override int WriteBytesWireFormat(byte[] dst, int dstIndex)
{
return 0;
}
internal override int ReadParameterWordsWireFormat(byte[] buffer, int bufferIndex)
{
int start = bufferIndex;
Fid = ReadInt2(buffer, bufferIndex);
bufferIndex += 2;
FileAttributes = ReadInt2(buffer, bufferIndex);
bufferIndex += 2;
LastWriteTime = ReadUTime(buffer, bufferIndex);
bufferIndex += 4;
DataSize = ReadInt4(buffer, bufferIndex);
bufferIndex += 4;
GrantedAccess = ReadInt2(buffer, bufferIndex);
bufferIndex += 2;
FileType = ReadInt2(buffer, bufferIndex);
bufferIndex += 2;
DeviceState = ReadInt2(buffer, bufferIndex);
bufferIndex += 2;
Action = ReadInt2(buffer, bufferIndex);
bufferIndex += 2;
ServerFid = ReadInt4(buffer, bufferIndex);
bufferIndex += 6;
return bufferIndex - start;
}
internal override int ReadParameterWordsWireFormat(byte[] buffer, int bufferIndex
)
{
int start = bufferIndex;
Fid = ReadInt2(buffer, bufferIndex);
bufferIndex += 2;
FileAttributes = ReadInt2(buffer, bufferIndex);
bufferIndex += 2;
LastWriteTime = ReadUTime(buffer, bufferIndex);
bufferIndex += 4;
DataSize = ReadInt4(buffer, bufferIndex);
bufferIndex += 4;
GrantedAccess = ReadInt2(buffer, bufferIndex);
bufferIndex += 2;
FileType = ReadInt2(buffer, bufferIndex);
bufferIndex += 2;
DeviceState = ReadInt2(buffer, bufferIndex);
bufferIndex += 2;
Action = ReadInt2(buffer, bufferIndex);
bufferIndex += 2;
ServerFid = ReadInt4(buffer, bufferIndex);
bufferIndex += 6;
return bufferIndex - start;
}
internal override int ReadBytesWireFormat(byte[] buffer, int bufferIndex)
{
return 0;
}
internal override int ReadBytesWireFormat(byte[] buffer, int bufferIndex)
{
return 0;
}
public override string ToString()
{
return "SmbComOpenAndXResponse["
+ base.ToString()
+ ",fid=" + Fid
+ ",fileAttributes=" + FileAttributes
+ ",lastWriteTime=" + LastWriteTime
+ ",dataSize=" + DataSize
+ ",grantedAccess=" + GrantedAccess
+ ",fileType=" + FileType
+ ",deviceState=" + DeviceState
+ ",action=" + Action
+ ",serverFid=" + ServerFid + "]";
}
}
public override string ToString()
{
return "SmbComOpenAndXResponse[" + base.ToString() + ",fid=" + Fid + ",fileAttributes="
+ FileAttributes + ",lastWriteTime=" + LastWriteTime + ",dataSize=" + DataSize
+ ",grantedAccess=" + GrantedAccess + ",fileType=" + FileType + ",deviceState="
+ DeviceState + ",action=" + Action + ",serverFid=" + ServerFid + "]";
}
}
}