Skip to content

Commit

Permalink
Increments version number to 1.0.6166
Browse files Browse the repository at this point in the history
Converts perf counter fields to properties
  • Loading branch information
ryannewington committed Nov 18, 2016
1 parent efb9c14 commit 13fdcc0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Lithnet.Pan.RAProxy.Setup/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Product Id="*"
Name="Lithnet RADIUS Accounting Proxy for Palo Alto Firewall"
Language="1033"
Version="1.0.6165"
Version="1.0.6166"
Manufacturer="Lithnet"
UpgradeCode="62b975ca3c9f4a4299c34d96834fded9">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" Platform="x64" />
Expand Down
8 changes: 4 additions & 4 deletions src/Lithnet.Pan.RAProxy/Logging.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ internal class Logging
public const int EventIDAccountingRequestRecieved = 4001;
public const int EventIDUserIDUpdateComplete = 4002;

public static PerformanceCounter CounterReceivedPerSecond;
public static PerformanceCounter CounterReceivedPerSecond { get; }

public static PerformanceCounter CounterSentPerSecond;
public static PerformanceCounter CounterSentPerSecond { get; }

public static PerformanceCounter CounterItemsInQueue { get; }

public static PerformanceCounter CounterItemsInQueue;

public static void WriteEntry(string message, EventLogEntryType type, int eventID)
{
Trace.WriteLine(message);
Expand Down

0 comments on commit 13fdcc0

Please sign in to comment.