Skip to content

Commit c5f6872

Browse files
SQLNA - New reports and improvements
1 parent 02f85fe commit c5f6872

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed
0 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.

SQL_Network_Analyzer/SQLNA/FrameData.cs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,9 @@ public string PacketType
138138
{
139139
get
140140
{
141+
if (isKeepAlive) return "KA";
142+
if (isRetransmit && payloadLength > 1) return "RET";
143+
141144
switch (frameType)
142145
{
143146
case FrameType.ApplicationData: return "AD";
@@ -162,12 +165,7 @@ public string PacketType
162165
case FrameType.SSPI: return "SS";
163166
case FrameType.TabularResponse: return "DATA";
164167
case FrameType.XactMgrRequest: return "TX";
165-
default:
166-
{
167-
if (isKeepAlive) return "KA";
168-
if (isRetransmit && payloadLength > 1) return "RET";
169-
return FormatFlags("");
170-
};
168+
default: return FormatFlags("");
171169
}
172170
}
173171
}

SQL_Network_Analyzer/SQLNA/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.5.1974.0")]
36-
[assembly: AssemblyFileVersion("1.5.1974.0")]
35+
[assembly: AssemblyVersion("1.5.1975.0")]
36+
[assembly: AssemblyFileVersion("1.5.1975.0")]

0 commit comments

Comments
 (0)