Skip to content

Commit f1de08f

Browse files
SQLNA - default format is Auto
Can override in command line with /filterfmt=default
1 parent 739785f commit f1de08f

File tree

5 files changed

+8
-2
lines changed

5 files changed

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

SQL_Network_Analyzer/SQLNA/Program.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ static void Main(string[] args)
105105
//
106106
// set filterFormat
107107
//
108+
filterFormat = "A"; // override default to be the same as "Auto"
108109
values = cp.GetArgs("filterfmt");
109110
if (values.Count != 0)
110111
{
@@ -126,6 +127,11 @@ static void Main(string[] args)
126127
filterFormat = "A"; // gets set to N or W based on the file type of the first file opened
127128
break;
128129
}
130+
case "DEFAULT":
131+
{
132+
filterFormat = ""; // blank means to display the IP address and filter as two separate columns and not a network filter string
133+
break;
134+
}
129135
default:
130136
{
131137
Console.WriteLine("Bad arguments: filterFmt");

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.2050.0")]
36-
[assembly: AssemblyFileVersion("1.5.2050.0")]
35+
[assembly: AssemblyVersion("1.5.2052.0")]
36+
[assembly: AssemblyFileVersion("1.5.2052.0")]

0 commit comments

Comments
 (0)