aboutsummaryrefslogtreecommitdiff
path: root/Emby.Common.Implementations/IO/SharpCifs/Smb/SmbComLogoffAndX.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Common.Implementations/IO/SharpCifs/Smb/SmbComLogoffAndX.cs')
-rw-r--r--Emby.Common.Implementations/IO/SharpCifs/Smb/SmbComLogoffAndX.cs55
1 files changed, 27 insertions, 28 deletions
diff --git a/Emby.Common.Implementations/IO/SharpCifs/Smb/SmbComLogoffAndX.cs b/Emby.Common.Implementations/IO/SharpCifs/Smb/SmbComLogoffAndX.cs
index 8f88ccd57..0910d4e66 100644
--- a/Emby.Common.Implementations/IO/SharpCifs/Smb/SmbComLogoffAndX.cs
+++ b/Emby.Common.Implementations/IO/SharpCifs/Smb/SmbComLogoffAndX.cs
@@ -16,37 +16,36 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
namespace SharpCifs.Smb
{
- internal class SmbComLogoffAndX : AndXServerMessageBlock
- {
- internal SmbComLogoffAndX(ServerMessageBlock andx) : base(andx)
- {
- Command = SmbComLogoffAndx;
- }
+ internal class SmbComLogoffAndX : AndXServerMessageBlock
+ {
+ internal SmbComLogoffAndX(ServerMessageBlock andx) : base(andx)
+ {
+ Command = SmbComLogoffAndx;
+ }
- 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
- )
- {
- return 0;
- }
+ internal override int ReadParameterWordsWireFormat(byte[] buffer, int bufferIndex)
+ {
+ return 0;
+ }
- 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 "SmbComLogoffAndX[" + base.ToString() + "]";
- }
- }
+ public override string ToString()
+ {
+ return "SmbComLogoffAndX[" + base.ToString() + "]";
+ }
+ }
}