using System.Threading; using System.Threading.Tasks; namespace FastGithub.PacketIntercept { /// /// dns拦截器接口 /// interface IDnsInterceptor { /// /// 拦截数据包 /// /// /// Task InterceptAsync(CancellationToken cancellationToken); } }