Hi,
The attached jDNSLookup-library does MX and A record (DNS) lookups.
It's my first library so please feel free to share any feedback with me.
The attached jDNSLookup-library does MX and A record (DNS) lookups.
It's my first library so please feel free to share any feedback with me.
B4X:
Dim dns As jDNSLookup
Dim lcv As Int
Dim records() As String = dns.getMXRecords("gmail.com")
For lcv = 0 To records.Length - 1
Log (records(lcv))
Next