123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Utilities;
- namespace SMBLibrary.SMB1
- {
-
-
-
- public class CloseResponse : SMB1Command
- {
- public CloseResponse() : base()
- {}
- public CloseResponse(byte[] buffer, int offset) : base(buffer, offset, false)
- { }
- public override CommandName CommandName
- {
- get
- {
- return CommandName.SMB_COM_CLOSE;
- }
- }
- }
- }
|