aboutsummaryrefslogtreecommitdiff
path: root/dns_example.c
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2020-07-29 08:21:59 +0300
committerAleksey Veresov <aleksey@veresov.pro>2020-07-29 08:21:59 +0300
commitacf41993d4d699ff12238e943d7112dfdd5ace12 (patch)
treefd609f72c9578f20c2c4f4a4a1b0d8055a4a48c0 /dns_example.c
parente9f1c6b518a62e3b173c8dfa396bbf18b5dc7cde (diff)
downloadvsdns-acf41993d4d699ff12238e943d7112dfdd5ace12.tar
vsdns-acf41993d4d699ff12238e943d7112dfdd5ace12.tar.xz
vsdns-acf41993d4d699ff12238e943d7112dfdd5ace12.zip
Makefile & little upgrades.
Diffstat (limited to 'dns_example.c')
-rw-r--r--dns_example.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/dns_example.c b/dns_example.c
index 27eea8d..f6efeba 100644
--- a/dns_example.c
+++ b/dns_example.c
@@ -4,10 +4,9 @@
int main()
{
- struct dns_answers *ans = dns_get("10.1.1.1",
- "veresov.pro",
- dns_type_mx);
struct dns_answers *cur;
+ const char *router = "10.1.1.1"; /* place here your one */
+ struct dns_answers *ans = dns_get(router, "veresov.pro", dns_type_a);
for (cur = ans; cur; cur = cur->next) {
if (cur->type == dns_type_a) {
unsigned char *ip = cur->data;