mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-08-03 06:21:49 +02:00
Pass lock / unlock requests to the underlying object store
This commit is contained in:
parent
c08b425205
commit
e7da671877
5 changed files with 187 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue