mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-08-17 20:43:46 +02:00
Renamed SMBConnectionReceiveBuffer to NBTConnectionReceiveBuffer
This commit is contained in:
parent
bc167316a2
commit
3aa7825d1c
5 changed files with 21 additions and 13 deletions
|
@ -8,6 +8,7 @@ using System;
|
|||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Net.Sockets;
|
||||
using SMBLibrary.NetBios;
|
||||
using Utilities;
|
||||
|
||||
namespace SMBLibrary.Server
|
||||
|
@ -15,8 +16,7 @@ namespace SMBLibrary.Server
|
|||
public class SMB1ConnectionState
|
||||
{
|
||||
public Socket ClientSocket = null;
|
||||
public const int ReceiveBufferSize = 131075; // Largest NBT Session Packet
|
||||
public SMBConnectionReceiveBuffer ReceiveBuffer = new SMBConnectionReceiveBuffer(ReceiveBufferSize);
|
||||
public NBTConnectionReceiveBuffer ReceiveBuffer = new NBTConnectionReceiveBuffer();
|
||||
|
||||
public int MaxBufferSize;
|
||||
public bool LargeRead;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue