|
@@ -1,4 +1,4 @@
|
|
|
-/* Copyright (C) 2014 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
|
|
|
+/* Copyright (C) 2014-2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
|
|
|
*
|
|
|
* You can redistribute this program and/or modify it under the terms of
|
|
|
* the GNU Lesser Public License as published by the Free Software Foundation,
|
|
@@ -6,7 +6,7 @@
|
|
|
*/
|
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
|
-using System.Text;
|
|
|
+using System.IO;
|
|
|
using Utilities;
|
|
|
|
|
|
namespace SMBLibrary.SMB1
|
|
@@ -40,13 +40,13 @@ namespace SMBLibrary.SMB1
|
|
|
BufferFormat1 = ByteReader.ReadByte(this.SMBData, ref dataOffset);
|
|
|
if (BufferFormat1 != SupportedBufferFormat)
|
|
|
{
|
|
|
- throw new InvalidRequestException("Unsupported Buffer Format");
|
|
|
+ throw new InvalidDataException("Unsupported Buffer Format");
|
|
|
}
|
|
|
OldFileName = SMB1Helper.ReadSMBString(this.SMBData, ref dataOffset, isUnicode);
|
|
|
BufferFormat2 = ByteReader.ReadByte(this.SMBData, ref dataOffset);
|
|
|
if (BufferFormat2 != SupportedBufferFormat)
|
|
|
{
|
|
|
- throw new InvalidRequestException("Unsupported Buffer Format");
|
|
|
+ throw new InvalidDataException("Unsupported Buffer Format");
|
|
|
}
|
|
|
if (isUnicode)
|
|
|
{
|