SMBServer: Hid internal methods and classes

This commit is contained in:
Tal Aloni 2017-03-04 11:20:45 +02:00
parent cef7a6dc29
commit 174e43f792
11 changed files with 22 additions and 22 deletions

View file

@ -37,7 +37,7 @@ namespace SMBLibrary.Server
return null;
}
public void ProcessSMB2RequestChain(List<SMB2Command> requestChain, ref ConnectionState state)
private void ProcessSMB2RequestChain(List<SMB2Command> requestChain, ref ConnectionState state)
{
List<SMB2Command> responseChain = new List<SMB2Command>();
FileID? fileID = null;
@ -67,7 +67,7 @@ namespace SMBLibrary.Server
/// <summary>
/// May return null
/// </summary>
public SMB2Command ProcessSMB2Command(SMB2Command command, ref ConnectionState state)
private SMB2Command ProcessSMB2Command(SMB2Command command, ref ConnectionState state)
{
if (state.ServerDialect == SMBDialect.NotSet)
{
@ -105,7 +105,7 @@ namespace SMBLibrary.Server
}
}
public SMB2Command ProcessSMB2Command(SMB2Command command, SMB2ConnectionState state)
private SMB2Command ProcessSMB2Command(SMB2Command command, SMB2ConnectionState state)
{
if (command is SessionSetupRequest)
{
@ -222,7 +222,7 @@ namespace SMBLibrary.Server
return new ErrorResponse(command.CommandName, NTStatus.STATUS_NOT_SUPPORTED);
}
public static void TrySendResponse(ConnectionState state, SMB2Command response)
private static void TrySendResponse(ConnectionState state, SMB2Command response)
{
SessionMessagePacket packet = new SessionMessagePacket();
packet.Trailer = response.GetBytes();
@ -230,7 +230,7 @@ namespace SMBLibrary.Server
state.LogToServer(Severity.Verbose, "SMB2 response sent: {0}, Packet length: {1}", response.CommandName.ToString(), packet.Length);
}
public static void TrySendResponseChain(ConnectionState state, List<SMB2Command> responseChain)
private static void TrySendResponseChain(ConnectionState state, List<SMB2Command> responseChain)
{
byte[] sessionKey = null;
if (state is SMB2ConnectionState)