Support SRV record unfurling for PC networks

This commit is contained in:
theminecoder
2016-06-09 13:26:32 +10:00
parent 41a6a25854
commit 0034d7fc03
2 changed files with 22 additions and 1 deletions

View File

@ -48,7 +48,10 @@ function pingMinecraftPE(host, port, timeout, callback) {
exports.ping = function(host, port, type, timeout, callback, version) {
if (type === 'PC') {
pingMinecraftPC(host, port || 25565, timeout, callback, version);
util.unfurlSRV(host, port, function(host, port){
console.log('Pinging '+host+":"+port+"...")
pingMinecraftPC(host, port || 25565, timeout, callback, version);
})
} else if (type === 'PE') {
pingMinecraftPE(host, port || 19132, timeout, callback);
} else {