123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using Utilities;
- namespace SMBLibrary.NetBios
- {
-
-
-
- public class SessionMessagePacket : SessionPacket
- {
- public SessionMessagePacket() : base()
- {
- this.Type = SessionPacketTypeName.SessionMessage;
- }
- public SessionMessagePacket(byte[] buffer, int offset) : base(buffer, offset)
- {
- }
- }
- }
|