mirror of
https://github.com/NLnetLabs/domain.git
synced 2026-09-09 19:37:44 +02:00
This PR fixes a bug in the inplace zone parser that rejects character string of length 255.
16 lines
1.3 KiB
YAML
16 lines
1.3 KiB
YAML
origin: example.com.
|
|
zonefile: |
|
|
254.short 3600 IN TXT "12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234"
|
|
255.max 3600 IN TXT "123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345"
|
|
result:
|
|
- owner: 254.short.example.com.
|
|
class: IN
|
|
ttl: 3600
|
|
data: !Txt
|
|
- 12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234
|
|
- owner: 255.max.example.com.
|
|
class: IN
|
|
ttl: 3600
|
|
data: !Txt
|
|
- 123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345
|