Skip to content

Commit

Permalink
docs(DohClient): a word about the implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
richardschneider committed May 18, 2018
1 parent 971e53e commit d52aada
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/DohClient.cs
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
using Common.Logging;
using Nito.AsyncEx;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Net.NetworkInformation;
using System.Net.Sockets;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

Expand All @@ -24,6 +20,11 @@ namespace Makaretu.Dns
/// Domain Name System (DNS) resolution via the HTTPS protocol. The goal
/// is to increase user privacy and security by preventing eavesdropping and
/// manipulation of DNS data by man-in-the-middle attacks.
/// <para>
/// The <b>DohClient</b> uses the HTTP POST method to hide as much
/// information as is possible. Also, it tends to generated smaller
/// requests.
/// </para>
/// </remarks>
/// <seealso href="https://en.wikipedia.org/wiki/DNS_over_HTTPS"/>
public class DohClient
Expand Down

0 comments on commit d52aada

Please sign in to comment.