Pass lock / unlock requests to the underlying object store

This commit is contained in:
Tal Aloni 2017-08-31 15:22:26 +03:00
parent c08b425205
commit e7da671877
5 changed files with 187 additions and 2 deletions

View file

@ -157,6 +157,10 @@ namespace SMBLibrary.Server
{
return ReadWriteResponseHelper.GetWriteResponse((WriteRequest)command, share, state);
}
else if (command is LockRequest)
{
return LockHelper.GetLockResponse((LockRequest)command, share, state);
}
else if (command is FlushRequest)
{
return ReadWriteResponseHelper.GetFlushResponse((FlushRequest)command, share, state);