Skip to content

Commit

Permalink
Merge pull request #4 from vwangjinpeng/master
Browse files Browse the repository at this point in the history
Added the Multi-Request_Put_Hint field and solved the problem of Author Logins parsing duplicate content.
  • Loading branch information
xian-rong authored Nov 1, 2023
2 parents 54bc2aa + 626a3d6 commit 0738b86
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion FSSHTTPWOPIInspector/Source/Parsers/FSSHTTPB.cs
Original file line number Diff line number Diff line change
Expand Up @@ -431,9 +431,9 @@ public override void Parse(Stream s)
if (this.Count.GetUint(Count) > 0)
{
ulong tempCount = this.Count.GetUint(Count);
StringItem tempGuid = new StringItem();
do
{
StringItem tempGuid = new StringItem();
tempGuid.Parse(s);
tempContent.Add(tempGuid);
tempCount--;
Expand Down Expand Up @@ -3545,6 +3545,8 @@ public class PutChangesRequest : BaseStructure
[BitAttribute(1)]
public byte E;
[BitAttribute(1)]
public byte F;
[BitAttribute(1)]
public byte G;
[BitAttribute(1)]
public byte H;
Expand Down Expand Up @@ -3575,6 +3577,7 @@ public override void Parse(Stream s)
this.C = (byte)GetBits(tempByte, 2, 1);
this.D = (byte)GetBits(tempByte, 3, 1);
this.E = (byte)GetBits(tempByte, 4, 1);
this.F = (byte)GetBits(tempByte, 5, 1);
this.G = (byte)GetBits(tempByte, 6, 1);
this.H = (byte)GetBits(tempByte, 7, 1);

Expand Down

0 comments on commit 0738b86

Please sign in to comment.