Skip to content

Commit 1a10e82

Browse files
Merge pull request #42 from IamWenboZhang/master
Updated the parse function of ModLinkAttRequest
2 parents df71bce + 7e5b51a commit 1a10e82

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

MAPIInspector/Source/Parsers/MSOXCMAPIHTTP.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -2504,6 +2504,7 @@ public override void Parse(Stream s)
25042504
}
25052505
#endregion 2.2.5.9
25062506

2507+
25072508
#region 2.2.5.10 ModLinkAtt
25082509
/// <summary>
25092510
/// A class indicates the ModLinkAttRequest structure.
@@ -2571,9 +2572,9 @@ public override void Parse(Stream s)
25712572

25722573
for (int i = 0; i < this.EntryIdCount; i++)
25732574
{
2575+
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
25742576
byte currentByte = this.ReadByte();
25752577
s.Position -= 1;
2576-
25772578
if (currentByte == 0x87)
25782579
{
25792580
EphemeralEntryID ephemeralEntryID = new EphemeralEntryID();

0 commit comments

Comments
 (0)