Skip to content

Commit

Permalink
Updated the parse function of ModLinkAttRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
IamWenboZhang committed May 6, 2019
1 parent 3e7017d commit 7e5b51a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion MAPIInspector/Source/Parsers/MSOXCMAPIHTTP.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2504,6 +2504,7 @@ public override void Parse(Stream s)
}
#endregion 2.2.5.9


#region 2.2.5.10 ModLinkAtt
/// <summary>
/// A class indicates the ModLinkAttRequest structure.
Expand Down Expand Up @@ -2571,9 +2572,9 @@ public override void Parse(Stream s)

for (int i = 0; i < this.EntryIdCount; i++)
{
var cb = this.ReadUint(); //See details on MS-OXNSPI 3.1.4.1.15 NspiModLinkAtt (Opnum 14) and 2.2.2.3 Binary_r Structure
byte currentByte = this.ReadByte();
s.Position -= 1;

if (currentByte == 0x87)
{
EphemeralEntryID ephemeralEntryID = new EphemeralEntryID();
Expand Down

0 comments on commit 7e5b51a

Please sign in to comment.