@@ -184,8 +184,9 @@ changes:
184
184
addresses in the order the DNS resolver returned them. When ` false ` ,
185
185
IPv4 addresses are placed before IPv6 addresses.
186
186
** Default:** currently ` false ` (addresses are reordered) but this is
187
- expected to change in the not too distant future.
188
- New code should use ` { verbatim: true } ` .
187
+ expected to change in the not too distant future. Default value is
188
+ configurable using [ ` dns.setDefaultResultOrder() ` ] [ ] or
189
+ [ ` --dns-result-order ` ] [ ] . New code should use ` { verbatim: true } ` .
189
190
* ` callback ` {Function}
190
191
* ` err ` {Error}
191
192
* ` address ` {string} A string representation of an IPv4 or IPv6 address.
@@ -627,6 +628,23 @@ array of host names.
627
628
On error, ` err ` is an [ ` Error ` ] [ ] object, where ` err.code ` is
628
629
one of the [ DNS error codes] [ ] .
629
630
631
+ ## ` dns.setDefaultResultOrder(order) `
632
+ <!-- YAML
633
+ added: REPLACEME
634
+ -->
635
+
636
+ * ` order ` {string} must be ` 'ipv4first' ` or ` 'verbatim' ` .
637
+
638
+ Set the default value of ` verbatim ` in [ ` dns.lookup() ` ] [ ] and
639
+ [ ` dnsPromises.lookup() ` ] [ ] . The value could be:
640
+ * ` ipv4first ` : sets default ` verbatim ` ` false ` .
641
+ * ` verbatim ` : sets default ` verbatim ` ` true ` .
642
+
643
+ The default is ` ipv4first ` and [ ` dns.setDefaultResultOrder() ` ] [ ] have higher
644
+ priority than [ ` --dns-result-order ` ] [ ] . When using [ worker threads] [ ] ,
645
+ [ ` dns.setDefaultResultOrder() ` ] [ ] from the main thread won't affect the default
646
+ dns orders in workers.
647
+
630
648
## ` dns.setServers(servers) `
631
649
<!-- YAML
632
650
added: v0.11.3
@@ -772,8 +790,9 @@ added: v10.6.0
772
790
IPv6 addresses in the order the DNS resolver returned them. When ` false ` ,
773
791
IPv4 addresses are placed before IPv6 addresses.
774
792
** Default:** currently ` false ` (addresses are reordered) but this is
775
- expected to change in the not too distant future.
776
- New code should use ` { verbatim: true } ` .
793
+ expected to change in the not too distant future. Default value is
794
+ configurable using [ ` dns.setDefaultResultOrder() ` ] [ ] or
795
+ [ ` --dns-result-order ` ] [ ] . New code should use ` { verbatim: true } ` .
777
796
778
797
Resolves a host name (e.g. ` 'nodejs.org' ` ) into the first found A (IPv4) or
779
798
AAAA (IPv6) record. All ` option ` properties are optional. If ` options ` is an
@@ -1127,6 +1146,23 @@ array of host names.
1127
1146
On error, the ` Promise ` is rejected with an [ ` Error ` ] [ ] object, where ` err.code `
1128
1147
is one of the [ DNS error codes] ( #dns_error_codes ) .
1129
1148
1149
+ ### ` dnsPromises.setDefaultResultOrder(order) `
1150
+ <!-- YAML
1151
+ added: REPLACEME
1152
+ -->
1153
+
1154
+ * ` order ` {string} must be ` 'ipv4first' ` or ` 'verbatim' ` .
1155
+
1156
+ Set the default value of ` verbatim ` in [ ` dns.lookup() ` ] [ ] and
1157
+ [ ` dnsPromises.lookup() ` ] [ ] . The value could be:
1158
+ * ` ipv4first ` : sets default ` verbatim ` ` false ` .
1159
+ * ` verbatim ` : sets default ` verbatim ` ` true ` .
1160
+
1161
+ The default is ` ipv4first ` and [ ` dnsPromises.setDefaultResultOrder() ` ] [ ] have
1162
+ higher priority than [ ` --dns-result-order ` ] [ ] . When using [ worker threads] [ ] ,
1163
+ [ ` dnsPromises.setDefaultResultOrder() ` ] [ ] from the main thread won't affect the
1164
+ default dns orders in workers.
1165
+
1130
1166
### ` dnsPromises.setServers(servers) `
1131
1167
<!-- YAML
1132
1168
added: v10.6.0
@@ -1236,6 +1272,7 @@ uses. For instance, _they do not use the configuration from `/etc/hosts`_.
1236
1272
[ Implementation considerations section ] : #dns_implementation_considerations
1237
1273
[ RFC 5952 ] : https://tools.ietf.org/html/rfc5952#section-6
1238
1274
[ RFC 8482 ] : https://tools.ietf.org/html/rfc8482
1275
+ [ `--dns-result-order` ] : cli.md#cli_dns_result_order_order
1239
1276
[ `Error` ] : errors.md#errors_class_error
1240
1277
[ `UV_THREADPOOL_SIZE` ] : cli.md#cli_uv_threadpool_size_size
1241
1278
[ `dgram.createSocket()` ] : dgram.md#dgram_dgram_createsocket_options_callback
@@ -1255,6 +1292,7 @@ uses. For instance, _they do not use the configuration from `/etc/hosts`_.
1255
1292
[ `dns.resolveSrv()` ] : #dns_dns_resolvesrv_hostname_callback
1256
1293
[ `dns.resolveTxt()` ] : #dns_dns_resolvetxt_hostname_callback
1257
1294
[ `dns.reverse()` ] : #dns_dns_reverse_ip_callback
1295
+ [ `dns.setDefaultResultOrder()` ] : #dns_dns_setdefaultresultorder_order
1258
1296
[ `dns.setServers()` ] : #dns_dns_setservers_servers
1259
1297
[ `dnsPromises.getServers()` ] : #dns_dnspromises_getservers
1260
1298
[ `dnsPromises.lookup()` ] : #dns_dnspromises_lookup_hostname_options
@@ -1272,7 +1310,9 @@ uses. For instance, _they do not use the configuration from `/etc/hosts`_.
1272
1310
[ `dnsPromises.resolveSrv()` ] : #dns_dnspromises_resolvesrv_hostname
1273
1311
[ `dnsPromises.resolveTxt()` ] : #dns_dnspromises_resolvetxt_hostname
1274
1312
[ `dnsPromises.reverse()` ] : #dns_dnspromises_reverse_ip
1313
+ [ `dnsPromises.setDefaultResultOrder()` ] : #dns_dnspromises_setdefaultresultorder_order
1275
1314
[ `dnsPromises.setServers()` ] : #dns_dnspromises_setservers_servers
1276
1315
[ `socket.connect()` ] : net.md#net_socket_connect_options_connectlistener
1277
1316
[ `util.promisify()` ] : util.md#util_util_promisify_original
1278
1317
[ supported `getaddrinfo` flags ] : #dns_supported_getaddrinfo_flags
1318
+ [ worker threads ] : worker_threads.md
0 commit comments