Browse Source

Merge origin/master

MissValeska 9 years ago
parent
commit
6ef905da67
2 changed files with 10 additions and 2 deletions
  1. 7
    2
      README
  2. 3
    0
      src/dnslib.c

+ 7
- 2
README View File

@@ -220,12 +220,17 @@ Subscribe to the netsukuku mailing to get help, be updated on the latest news
220 220
 and discuss on its development.
221 221
 
222 222
 To subscribe to the list, send a message to:
223
+
223 224
     netsukuku-subscribe@lists.dyne.org
225
+
224 226
 or use the web interface:
225
-    http://lists.dyne.org/mailman/listinfo/netsukuku
227
+
228
+    https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/netsukuku
226 229
    
227 230
 You can browse the archive here:
228
-    http://lists.dyne.org/netsukuku/
231
+
232
+    https://lists.dyne.org/lurker/list/netsukuku.en.html
233
+
229 234
     http://dir.gmane.org/gmane.network.peer-to-peer.netsukuku
230 235
  
231 236
 

+ 3
- 0
src/dnslib.c View File

@@ -491,6 +491,9 @@ d_a_u(char *start_buf, char *buf, dns_pkt_a ** dpa_orig, int limit_len)
491 491
 	if (dpa->type == T_A) {
492 492
 		memcpy(dpa->rdata, buf, rdlen);	/* 32bit address */
493 493
 		count += rdlen;
494
+	} else if (dpa->type == T_AAAA) {
495
+		memcpy(dpa->rdata, buf, rdlen);	/* 128bit address */
496
+		count += rdlen;
494 497
 	} else if (dpa->type == T_MX) {
495 498
 		memcpy(dpa->rdata, buf, 2);
496 499
 		if ((ui =

Loading…
Cancel
Save