Skip to content

Commit

Permalink
Update the dnstap message to include more transports
Browse files Browse the repository at this point in the history
  • Loading branch information
rgacogne committed Oct 21, 2021
1 parent fb1e441 commit 7b61b55
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pdns/dnstap.proto
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,12 @@ enum SocketFamily {

// SocketProtocol: the protocol used to transport a DNS message.
enum SocketProtocol {
UDP = 1; // DNS over UDP transport (RFC 1035 section 4.2.1)
TCP = 2; // DNS over TCP transport (RFC 1035 section 4.2.2)
DOT = 3; // DNS over TLS (RFC 7858)
DOH = 4; // DNS over HTTPS (RFC 8484)
UDP = 1; // DNS over UDP transport (RFC 1035 section 4.2.1)
TCP = 2; // DNS over TCP transport (RFC 1035 section 4.2.2)
DOT = 3; // DNS over TLS (RFC 7858)
DOH = 4; // DNS over HTTPS (RFC 8484)
DNSCryptUDP = 5; // DNSCrypt over UDP (https://dnscrypt.info/protocol)
DNSCryptTCP = 6; // DNSCrypt over TCP (https://dnscrypt.info/protocol)
}

// Policy: information about any name server operator policy
Expand Down

0 comments on commit 7b61b55

Please sign in to comment.