[openfirmware] [commit] r2537 - in ofw: inet inetv6

repository service svn at openfirmware.info
Tue Sep 27 06:59:21 CEST 2011


Author: wmb
Date: Tue Sep 27 06:59:20 2011
New Revision: 2537
URL: http://tracker.coreboot.org/trac/openfirmware/changeset/2537

Log:
DNS - use source port 53 which works better with dnscache than the previously-used port 1022.

Modified:
   ofw/inet/dns.fth
   ofw/inetv6/dns.fth

Modified: ofw/inet/dns.fth
==============================================================================
--- ofw/inet/dns.fth	Tue Sep 27 06:54:19 2011	(r2536)
+++ ofw/inet/dns.fth	Tue Sep 27 06:59:20 2011	(r2537)
@@ -15,7 +15,7 @@
 \ QTYPE value for "A" (host name) is 1
 \ QCLASS value for "IN" (Internet) is 1
 
-d# 1022 value fw-port#
+d# 53 value fw-port#
 
 \ Encode/decode various DNS data types
 : +dnsw  ( w -- )  wbsplit +xb +xb  ;

Modified: ofw/inetv6/dns.fth
==============================================================================
--- ofw/inetv6/dns.fth	Tue Sep 27 06:54:19 2011	(r2536)
+++ ofw/inetv6/dns.fth	Tue Sep 27 06:59:20 2011	(r2537)
@@ -16,8 +16,7 @@
 \ QTYPE value for "AAAA" (IPv6 hostname) is h# 1c
 \ QCLASS value for "IN" (Internet) is 1
 
-\ d# 1022 value fw-port#                   \ It's been assigned by IANA.
-h# 800a constant fw-port#                  \ It's unassigned as of 8/13/2007.
+d# 53 constant fw-port#
 
 d# 2000 constant dns-timeout
 



More information about the openfirmware mailing list