mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 13:47:05 +02:00
Debug: proxy connections
This commit is contained in:
@@ -42,7 +42,7 @@ public class Whois {
|
||||
}
|
||||
|
||||
static String get(String domain, String host, int port) throws IOException {
|
||||
Socket socket = new Socket();
|
||||
Socket socket = ConnectionHelper.getSocket(host, port);
|
||||
socket.connect(new InetSocketAddress(host, port), WHOIS_TIMEOUT);
|
||||
try {
|
||||
byte[] request = (domain + "\r\n").getBytes(StandardCharsets.UTF_8);
|
||||
|
||||
Reference in New Issue
Block a user