Add configuration items to determine DNS records returned and sort order

This commit is contained in:
2024-10-25 23:28:39 +11:00
parent 179233385b
commit 271bf937cf
3 changed files with 29 additions and 8 deletions

View File

@@ -43,4 +43,18 @@ return [
'down' => 35,
'delist' => 45,
],
// IP Address Resolution preferences
'ip' => [
'AAAA' => [
'enabled' => env('FIDO_DNS_AAAA',TRUE),
'order' => env('FIDO_DNS_ORDER_AAAA',2),
'type' => DNS_AAAA,
],
'A' => [
'enabled' => env('FIDO_DNS_A',TRUE),
'order' => env('FIDO_DNS_ORDER__ORDER',1),
'type' => DNS_A,
],
],
];