Commit fd310348 authored by justcoding121's avatar justcoding121

add comments

parent 9142ed3d
......@@ -680,6 +680,10 @@ namespace Titanium.Web.Proxy
endPoint.Listener.Server.Dispose();
}
/// <summary>
/// Update client connection count.
/// </summary>
/// <param name="increment"></param>
internal void UpdateClientConnectionCount(bool increment)
{
if (increment)
......@@ -694,6 +698,10 @@ namespace Titanium.Web.Proxy
ClientConnectionCountChanged?.Invoke(this, EventArgs.Empty);
}
/// <summary>
/// Update server connection count.
/// </summary>
/// <param name="increment"></param>
internal void UpdateServerConnectionCount(bool increment)
{
if (increment)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment