aboutsummaryrefslogtreecommitdiff
path: root/src/gns/nss/nss_gns_query.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gns/nss/nss_gns_query.c')
-rw-r--r--src/gns/nss/nss_gns_query.c95
1 files changed, 68 insertions, 27 deletions
diff --git a/src/gns/nss/nss_gns_query.c b/src/gns/nss/nss_gns_query.c
index ab88d22..33a71f7 100644
--- a/src/gns/nss/nss_gns_query.c
+++ b/src/gns/nss/nss_gns_query.c
@@ -1,3 +1,22 @@
+/*
+ This file is part of GNUnet.
+ (C) 2012 Christian Grothoff (and other contributing authors)
+
+ GNUnet is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published
+ by the Free Software Foundation; either version 3, or (at your
+ option) any later version.
+
+ GNUnet is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with GNUnet; see the file COPYING. If not, write to the
+ Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+*/
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
@@ -14,52 +33,74 @@
* @param u the userdata (result struct)
* @return -1 on error else 0
*/
-int gns_resolve_name(int af, const char *name, struct userdata *u)
+int
+gns_resolve_name (int af,
+ const char *name,
+ struct userdata *u)
{
FILE *p;
char *cmd;
char line[128];
- if (af == AF_INET6)
+ if (AF_INET6 == af)
{
- if (-1 == asprintf(&cmd, "%s -t AAAA -u %s\n", "gnunet-gns -r", name))
+ if (-1 == asprintf (&cmd,
+ "%s -t AAAA -u %s\n",
+ "gnunet-gns -r", name))
return -1;
}
else
{
- if (-1 == asprintf(&cmd, "%s %s\n", "gnunet-gns -r -u", name))
+ if (-1 == asprintf (&cmd,
+ "%s %s\n",
+ "gnunet-gns -r -u", name))
return -1;
}
-
- p = popen(cmd,"r");
-
- if (p != NULL )
+ if (NULL == (p = popen (cmd, "r")))
+ {
+ free (cmd);
+ return -1;
+ }
+ while (NULL != fgets (line, sizeof(line), p))
{
- while (fgets( line, sizeof(line), p ) != NULL)
+ if (u->count >= MAX_ENTRIES)
+ break;
+ if (line[strlen(line)-1] == '\n')
{
-
- if (u->count >= MAX_ENTRIES)
- break;
-
- if (line[strlen(line)-1] == '\n')
+ line[strlen(line)-1] = '\0';
+ if (AF_INET == af)
+ {
+ if (inet_pton(af, line, &(u->data.ipv4[u->count])))
+ {
+ u->count++;
+ u->data_len += sizeof(ipv4_address_t);
+ }
+ else
+ {
+ pclose (p);
+ free (cmd);
+ return -1;
+ }
+ }
+ else if (AF_INET6 == af)
{
- line[strlen(line)-1] = '\0';
- if (af == AF_INET)
+ if (inet_pton(af, line, &(u->data.ipv6[u->count])))
{
- inet_pton(af, line, &(u->data.ipv4[u->count++]));
- u->data_len += sizeof(ipv4_address_t);
- }
- else if ((af == AF_INET6))
+ u->count++;
+ u->data_len += sizeof(ipv6_address_t);
+ }
+ else
{
- inet_pton(af, line, &(u->data.ipv6[u->count++]));
- u->data_len += sizeof(ipv6_address_t);
- }
+ pclose (p);
+ free (cmd);
+ return -1;
+ }
}
}
}
- fclose(p);
- free(cmd);
-
+ pclose (p);
+ free (cmd);
return 0;
-
}
+
+/* end of nss_gns_query.c */