Changeset 11132 for dotorg/trunk/html

Show
Ignore:
Timestamp:
08/12/2008 10:03:39 PM (4 months ago)
Author:
dave
Message:

wordsmithing.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dotorg/trunk/html/beps/bep_0022.rst

    r11129 r11132  
    100100The domain name returned from the reverse DNS lookup is specific to 
    101101the querying host.  In the naive implementation in DNS, there would be 
    102 one SRV resource record for every querying host.  A natural but 
    103 incorrect solution is to use a wildcard of the form:: 
     102one SRV resource record for every querying host.  This would work but 
     103is burdensome.  A natural, seemingly less burdensome, but incorrect 
     104solution is to use a wildcard of the form:: 
    104105 
    105106  *.pacbell.net 
     
    107108If wildcards are implemented according to the algorithm in section 
    1081094.3.2 in [#RFC-1034]_ then all subdomains of pacbell.net that do not 
    109 have an exact label match will match the wildcard.  Thus, 
     110have an exact label match will match the wildcard.  Thus unless there 
     111is an exact match then queries for 
     112 
     113:: 
     114  
     115  _bittorrent-tracker._tcp.adsl-69-107-0-14.dsl.pltn13.pacbell.net 
     116 
     117and 
    110118 
    111119:: 
    112120 
    113121  _jabber._tcp.pacbell.net  
    114  
    115 and 
    116  
    117 :: 
    118  
    119   _bittorrent-tracker._tcp.pacbell.net 
    120122 
    121123both match \*.pacbell.net and all SRV resource records with owner 
     
    132134  _bittorrent-tracker._tcp.*.pacbell.net 
    133135 
    134 However, section 4.3.3 in [#RFC-1034]_ specifies that wildcards only 
    135 appear as the first label in a domain name.  This restriction was 
    136 lifted in [#RFC-4592]_, but not with semantics applicable to our use 
    137 case.  An asterisk not at the beginning of a domain name is not 
    138 treated like a wildcard.  Only a lookup for the exact domain name 
     136Section 4.3.3 in [#RFC-1034]_ specifies that wildcards only appear as 
     137the first label in a domain name.  This restriction was lifted in 
     138[#RFC-4592]_, but not with semantics applicable to our use case.  An 
     139asterisk not at the beginning of a domain name is not treated like a 
     140wildcard.  Only a lookup for the exact domain name 
    139141 
    140142::