aboutsummaryrefslogtreecommitdiff
path: root/src/gnsrecord/plugin_gnsrecord_dns.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-12-06 22:01:13 +0000
committerChristian Grothoff <christian@grothoff.org>2013-12-06 22:01:13 +0000
commit7ecdcb36506603426953cf3588a8840f4cdca8ca (patch)
treec63c2974800572211034d6035835d13320fc2faf /src/gnsrecord/plugin_gnsrecord_dns.c
parent5640bd261ae9578a9e1e4db1634ea8bec84337b3 (diff)
downloadgnunet-7ecdcb36506603426953cf3588a8840f4cdca8ca.tar.gz
gnunet-7ecdcb36506603426953cf3588a8840f4cdca8ca.zip
-note missing features
Diffstat (limited to 'src/gnsrecord/plugin_gnsrecord_dns.c')
-rw-r--r--src/gnsrecord/plugin_gnsrecord_dns.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gnsrecord/plugin_gnsrecord_dns.c b/src/gnsrecord/plugin_gnsrecord_dns.c
index 42cf5e3ec..4f010dc42 100644
--- a/src/gnsrecord/plugin_gnsrecord_dns.c
+++ b/src/gnsrecord/plugin_gnsrecord_dns.c
@@ -358,6 +358,7 @@ dns_string_to_value (void *cls,
358 358
359 sdup = GNUNET_strdup (s); 359 sdup = GNUNET_strdup (s);
360 typep = strtok (sdup, " "); 360 typep = strtok (sdup, " ");
361 /* TODO: add typep mnemonic conversion according to RFC 4398 */
361 if ( (NULL == typep) || 362 if ( (NULL == typep) ||
362 (1 != sscanf (typep, 363 (1 != sscanf (typep,
363 "%u", 364 "%u",
@@ -378,6 +379,7 @@ dns_string_to_value (void *cls,
378 return GNUNET_SYSERR; 379 return GNUNET_SYSERR;
379 } 380 }
380 algp = strtok (NULL, " "); 381 algp = strtok (NULL, " ");
382 /* TODO: add algp mnemonic conversion according to RFC 4398/RFC 4034 */
381 if ( (NULL == algp) || 383 if ( (NULL == algp) ||
382 (1 != sscanf (algp, 384 (1 != sscanf (algp,
383 "%u", 385 "%u",