Files
netch/Netch/3rd/DNS/Protocol/IResponse.cs
Connection Refused b2ea730984 done
2019-12-02 19:51:12 +08:00

21 lines
664 B
C#

using DNS.Protocol.ResourceRecords;
using System.Collections.Generic;
namespace DNS.Protocol
{
public interface IResponse : IMessage
{
int Id { get; set; }
IList<IResourceRecord> AnswerRecords { get; }
IList<IResourceRecord> AuthorityRecords { get; }
IList<IResourceRecord> AdditionalRecords { get; }
bool RecursionAvailable { get; set; }
bool AuthenticData { get; set; }
bool CheckingDisabled { get; set; }
bool AuthorativeServer { get; set; }
bool Truncated { get; set; }
OperationCode OperationCode { get; set; }
ResponseCode ResponseCode { get; set; }
}
}