DNS.Message.EDNS0.Option.DAU (DNS v0.4.1)

View Source

EDNS0.Option.DAU RFC6975

DNSSEC Algorithm Understood (DAU) option is used to indicate which DNSSEC algorithms a resolver understands.

Option Format:

                  1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 3 3

0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | OPTION-CODE = 5 | OPTION-LENGTH | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | / ALGORITHM LIST / / / +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

  • ALGORITHM LIST: Variable length, list of DNSSEC algorithm codes

Summary

Types

t()

@type t() :: %DNS.Message.EDNS0.Option.DAU{
  code: DNS.Message.EDNS0.OptionCode.t(),
  data: [integer()],
  length: 0..65535
}

Functions

from_iodata(arg)

new(algorithm_list)

@spec new([integer()]) :: t()