Lines Matching defs:reach
691 def reach(h):
692 """Return reach of host h, as defined by RFC 2965, section 1.
694 The reach R of a host name H is defined as follows:
705 then the reach of H is .B.
707 * Otherwise, the reach of H is H.
709 >>> reach("www.acme.com")
711 >>> reach("acme.com")
713 >>> reach("acme.local")
732 host U does not domain-match the reach R of the request-host O in the
737 if not domain_match(req_host, reach(request.origin_req_host)):