Skip to content

Commit

Permalink
Merge pull request #77 from microsoft/20241007_SQLNA_CONT_Visualization
Browse files Browse the repository at this point in the history
SQLNA - Continuation packet visualization
  • Loading branch information
Malcolm-Stewart authored Oct 7, 2024
2 parents 2579718 + c581411 commit e936c6e
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 2 deletions.
Binary file modified SQL_Network_Analyzer/.vs/SQLNetworkAnalyzer/v15/.suo
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions SQL_Network_Analyzer/SQLNA/FrameData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ public string PacketType
if (isZeroWindowPacket) return "ZW";
if (isKeepAlive) return "KA";
if (isRetransmit && payloadLength > 1) return "RET";
if (isContinuation) return "CONT";

switch (frameType)
{
Expand Down
4 changes: 2 additions & 2 deletions SQL_Network_Analyzer/SQLNA/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.5.2194.0")]
[assembly: AssemblyFileVersion("1.5.2194.0")]
[assembly: AssemblyVersion("1.5.2197.0")]
[assembly: AssemblyFileVersion("1.5.2197.0")]

0 comments on commit e936c6e

Please sign in to comment.