License: MIT
diff --git a/svr.js b/svr.js
index 7196c3c..cc2907e 100644
--- a/svr.js
+++ b/svr.js
@@ -81,7 +81,7 @@ function deleteFolderRecursive(path) {
}
var os = require("os");
-var version = "3.7.3";
+var version = "3.7.4";
var singlethreaded = false;
if (process.versions) process.versions.svrjs = version; //Inject SVR.JS into process.versions
@@ -357,6 +357,7 @@ http.STATUS_CODES[497] = "HTTP Request Sent to HTTPS Port";
http.STATUS_CODES[598] = "Network Read Timeout Error";
http.STATUS_CODES[599] = "Network Connect Timeout Error";
var url = require("url");
+var dns = require("dns");
try {
var gracefulFs = require("graceful-fs");
if (!process.isBun) gracefulFs.gracefulify(fs); //Bun + graceful-fs + SVR.JS + requests about static content = 500 Internal Server Error!
@@ -865,21 +866,33 @@ if (host != "[offline]" || ifaceEx) {
return;
}
pubip = d.toString();
- if (!domain) {
- if (pubip.indexOf(":") == -1) {
- var parts = pubip.split(".");
- var p1 = parseInt(parts[0]).toString(16);
- var p2 = parseInt(parts[1]).toString(16);
- var p3 = parseInt(parts[2]).toString(16);
- var p4 = parseInt(parts[3]).toString(16);
- var pp = parseInt(pubport).toString(16);
- domain = p1 + p2 + p3 + p4 + pp + ".nodesvr.doriantech.com";
- } else {
- domain = pubip.replace(/[^0-9a-zA-Z]/gi, "").toLowerCase() + ".nodesvrip6.doriantech.com";
+ if (domain) {
+ ipRequestCompleted = true;
+ process.emit("ipRequestCompleted");
+ } else {
+ var callbackDone = false;
+
+ var dnsTimeout = setTimeout(function() {
+ callbackDone = true;
+ ipRequestCompleted = true;
+ process.emit("ipRequestCompleted");
+ }, 3000);
+
+ try {
+ dns.reverse(pubip, function(err, hostnames) {
+ if(callbackDone) return;
+ clearTimeout(dnsTimeout);
+ if(!err && hostnames.length > 0) domain = hostnames[0];
+ ipRequestCompleted = true;
+ process.emit("ipRequestCompleted");
+ });
+ } catch(err) {
+ clearTimeout(dnsTimeout);
+ callbackDone = true;
+ ipRequestCompleted = true;
+ process.emit("ipRequestCompleted");
}
}
- ipRequestCompleted = true;
- process.emit("ipRequestCompleted");
});
});
ipRequest.on("error", function () {
@@ -917,21 +930,33 @@ if (host != "[offline]" || ifaceEx) {
return;
}
pubip = d.toString();
- if (!domain) {
- if (pubip.indexOf(":") == -1) {
- var parts = pubip.split(".");
- var p1 = parseInt(parts[0]).toString(16);
- var p2 = parseInt(parts[1]).toString(16);
- var p3 = parseInt(parts[2]).toString(16);
- var p4 = parseInt(parts[3]).toString(16);
- var pp = parseInt(pubport).toString(16);
- domain = p1 + p2 + p3 + p4 + pp + ".nodesvr.doriantech.com";
- } else {
- domain = pubip.replace(/[^0-9a-zA-Z]/gi, "").toLowerCase() + ".nodesvrip6.doriantech.com";
+ if (domain) {
+ ipRequestCompleted = true;
+ process.emit("ipRequestCompleted");
+ } else {
+ var callbackDone = false;
+
+ var dnsTimeout = setTimeout(function() {
+ callbackDone = true;
+ ipRequestCompleted = true;
+ process.emit("ipRequestCompleted");
+ }, 3000);
+
+ try {
+ dns.reverse(pubip, function(err, hostnames) {
+ if(callbackDone) return;
+ clearTimeout(dnsTimeout);
+ if(!err && hostnames.length > 0) domain = hostnames[0];
+ ipRequestCompleted = true;
+ process.emit("ipRequestCompleted");
+ });
+ } catch(err) {
+ clearTimeout(dnsTimeout);
+ callbackDone = true;
+ ipRequestCompleted = true;
+ process.emit("ipRequestCompleted");
}
}
- ipRequestCompleted = true;
- process.emit("ipRequestCompleted");
});
});
ipRequest2.on("error", function () {
diff --git a/tests.html b/tests.html
index a2e66a1..66f492b 100644
--- a/tests.html
+++ b/tests.html
@@ -1,7 +1,7 @@
-
SVR.JS 3.7.3 Tests
+ SVR.JS 3.7.4 Tests
- SVR.JS 3.7.3 Tests
+ SVR.JS 3.7.4 Tests
Directory
Directory (with query)