1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using Utilities;
- namespace SMBLibrary.NetBios
- {
-
-
-
- public class PositiveSessionResponsePacket : SessionPacket
- {
- public PositiveSessionResponsePacket() : base()
- {
- this.Type = SessionPacketTypeName.PositiveSessionResponse;
- }
- public PositiveSessionResponsePacket(byte[] buffer, int offset) : base(buffer, offset)
- {
- }
- public override byte[] GetBytes()
- {
- this.Trailer = new byte[0];
- return base.GetBytes();
- }
- public override int Length
- {
- get
- {
- return HeaderLength;
- }
- }
- }
- }
|