Lines Matching defs:reach
655 def reach(h):
656 """Return reach of host h, as defined by RFC 2965, section 1.
658 The reach R of a host name H is defined as follows:
669 then the reach of H is .B.
671 * Otherwise, the reach of H is H.
673 >>> reach("www.acme.com")
675 >>> reach("acme.com")
677 >>> reach("acme.local")
696 host U does not domain-match the reach R of the request-host O in the
701 if not domain_match(req_host, reach(request.get_origin_req_host())):