Improved documentation

This commit is contained in:
Tal Aloni 2017-01-03 13:43:33 +02:00
parent 2444d686e7
commit 493966c4d1
7 changed files with 21 additions and 0 deletions

View file

@ -11,6 +11,9 @@ using Utilities;
namespace SMBLibrary.NetBios
{
/// <summary>
/// [RFC 1002] 4.3.4. NEGATIVE SESSION RESPONSE PACKET
/// </summary>
public class NegativeSessionResponsePacket : SessionPacket
{
public byte ErrorCode;

View file

@ -11,6 +11,9 @@ using Utilities;
namespace SMBLibrary.NetBios
{
/// <summary>
/// [RFC 1002] 4.3.3. POSITIVE SESSION RESPONSE PACKET
/// </summary>
public class PositiveSessionResponsePacket : SessionPacket
{
public PositiveSessionResponsePacket() : base()

View file

@ -11,6 +11,9 @@ using Utilities;
namespace SMBLibrary.NetBios
{
/// <summary>
/// [RFC 1002] 4.3.7. SESSION KEEP ALIVE PACKET
/// </summary>
public class SessionKeepAlivePacket : SessionPacket
{
public SessionKeepAlivePacket()

View file

@ -11,6 +11,9 @@ using Utilities;
namespace SMBLibrary.NetBios
{
/// <summary>
/// [RFC 1002] 4.3.6. SESSION MESSAGE PACKET
/// </summary>
public class SessionMessagePacket : SessionPacket
{
public SessionMessagePacket() : base()

View file

@ -11,6 +11,9 @@ using Utilities;
namespace SMBLibrary.NetBios
{
/// <summary>
/// [RFC 1002] 4.3.1. SESSION PACKET
/// </summary>
public abstract class SessionPacket
{
public SessionPacketTypeName Type;

View file

@ -11,6 +11,9 @@ using Utilities;
namespace SMBLibrary.NetBios
{
/// <summary>
/// [RFC 1002] 4.3.2. SESSION REQUEST PACKET
/// </summary>
public class SessionRequestPacket : SessionPacket
{
public string CalledName;

View file

@ -11,6 +11,9 @@ using Utilities;
namespace SMBLibrary.NetBios
{
/// <summary>
/// [RFC 1002] 4.3.5. SESSION RETARGET RESPONSE PACKET
/// </summary>
public class SessionRetargetResponsePacket : SessionPacket
{
uint IPAddress;