mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 13:47:05 +02:00
Small improvement
This commit is contained in:
@@ -455,8 +455,7 @@ public class DnsHelper {
|
||||
|
||||
byte[] out = query.toArray();
|
||||
OutputStream os = socket.getOutputStream();
|
||||
os.write(out.length / 256);
|
||||
os.write(out.length % 256);
|
||||
os.write(new byte[]{(byte) (out.length / 256), (byte) (out.length % 256)});
|
||||
os.write(out);
|
||||
|
||||
InputStream is = socket.getInputStream();
|
||||
|
||||
Reference in New Issue
Block a user