add ability to skip unfurlSrv calls to avoid ping cost
This commit is contained in:
@ -54,6 +54,11 @@ function ping (host, port, type, timeout, callback, version) {
|
||||
}
|
||||
|
||||
function unfurlSrv (hostname, port, callback) {
|
||||
if (config.performance && config.performance.skipUnfurlSrv) {
|
||||
callback(hostname, port)
|
||||
return
|
||||
}
|
||||
|
||||
dns.resolveSrv('_minecraft._tcp.' + hostname, (_, records) => {
|
||||
if (!records || records.length < 1) {
|
||||
callback(hostname, port)
|
||||
|
Reference in New Issue
Block a user