This commit is contained in:
Connection Refused
2019-12-02 19:51:12 +08:00
commit b2ea730984
229 changed files with 86605 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
////using System;
////using System.Linq;
////namespace DnsClient
////{
//// /// <summary>
//// /// Used for debugging at the moment, might be removed in a future release.
//// /// </summary>
//// public static class StaticLog
//// {
//// /// <summary>
//// /// The number of byte array allocations.
//// /// </summary>
//// public static long ByteArrayAllocations;
//// /// <summary>
//// /// The number of byte arrays released.
//// /// </summary>
//// public static long ByteArrayReleases;
//// /// <summary>
//// /// The number of resolved queries.
//// /// </summary>
//// public static long ResolveQueryCount;
//// /// <summary>
//// /// The number of resolve query tries.
//// /// </summary>
//// public static long ResolveQueryTries;
//// /// <summary>
//// /// The number of created clients.
//// /// </summary>
//// public static long CreatedClients;
//// }
////}