This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
furyform.com, www.furyform.com { | |
tls [email protected] | |
proxy / furyform.com:3000 { | |
transparent | |
} | |
} | |
2bedev.com, www.2bedev.com { | |
tls [email protected] | |
proxy / 2bedev.com:2368 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Net; | |
using System.Net.Sockets; | |
namespace DnsCall | |
{ | |
class Program | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function f() { | |
async function sleep(mills) { | |
return new Promise((resolve, reject) => { | |
setTimeout(() => { | |
return resolve() | |
}, mills) | |
}) | |
} | |
async function getPerformanceData() { | |
const maxTry = 10; |
OlderNewer