TTL limit actually isn't sent.

beta
Philippe Pittoli 2023-07-10 04:17:00 +02:00
parent 8130a90f4a
commit fbb34ba0fe
1 changed files with 0 additions and 4 deletions

View File

@ -15,9 +15,6 @@ type DNSZone
-- Each resource record has a number, this is the ID to give to a new RR. -- Each resource record has a number, this is the ID to give to a new RR.
, current_rrid :: Int , current_rrid :: Int
-- Minimum TTL accepted for a resource record.
, ttl_limit_min :: Int
} }
codec :: JsonCodec DNSZone codec :: JsonCodec DNSZone
@ -26,5 +23,4 @@ codec = CA.object "DNSZone"
{ domain: CA.string { domain: CA.string
, resources: CA.array RR.codec , resources: CA.array RR.codec
, current_rrid: CA.int , current_rrid: CA.int
, ttl_limit_min: CA.int
}) })