merge
This commit is contained in:
commit
f9e0bc9eb4
3 changed files with 34 additions and 6 deletions
|
@ -1067,3 +1067,9 @@ account of age.
|
||||||
|
|
||||||
Section 2. The Congress shall have power to enforce this
|
Section 2. The Congress shall have power to enforce this
|
||||||
article by appropriate legislation.
|
article by appropriate legislation.
|
||||||
|
|
||||||
|
Article XXVII.
|
||||||
|
|
||||||
|
No law, varying the compensation for the services of the
|
||||||
|
Senators and Representatives, shall take effect, until an
|
||||||
|
election of representatives shall have intervened.
|
||||||
|
|
|
@ -24,7 +24,7 @@ if not
|
||||||
max_age=604800 # 1 week
|
max_age=604800 # 1 week
|
||||||
echo 'HTTP/1.1 200 OK'^$cr
|
echo 'HTTP/1.1 200 OK'^$cr
|
||||||
emit_extra_headers
|
emit_extra_headers
|
||||||
echo 'Content-type: '^$type^$cr
|
echo 'Content-type: '^$type^'; charset=utf-8'^$cr
|
||||||
echo 'Cache-control: max-age='^$max_age^$cr
|
echo 'Cache-control: max-age='^$max_age^$cr
|
||||||
echo $cr
|
echo $cr
|
||||||
exec cat $full_path
|
exec cat $full_path
|
||||||
|
|
|
@ -340,13 +340,20 @@ find the IP addresses. Returns
|
||||||
domain name
|
domain name
|
||||||
.RI ( dom )
|
.RI ( dom )
|
||||||
and ip address
|
and ip address
|
||||||
.RI ( ip )
|
.RI ( ip ).
|
||||||
|
.TP
|
||||||
|
.B ipv6
|
||||||
|
find the IPv6 addresses. Returns
|
||||||
|
domain name
|
||||||
|
.RI ( dom )
|
||||||
|
and ipv6 address
|
||||||
|
.RI ( ipv6 ).
|
||||||
.TP
|
.TP
|
||||||
.B mx
|
.B mx
|
||||||
look up the mail exchangers. Returns preference
|
look up the mail exchangers. Returns preference
|
||||||
.RI ( pref )
|
.RI ( pref )
|
||||||
and exchanger
|
and exchanger
|
||||||
.RI ( mx )
|
.RI ( mx ).
|
||||||
.TP
|
.TP
|
||||||
.B ptr
|
.B ptr
|
||||||
do a reverse query. Here
|
do a reverse query. Here
|
||||||
|
@ -356,13 +363,13 @@ must be an
|
||||||
IP address. Returns reverse name
|
IP address. Returns reverse name
|
||||||
.RI ( ptr )
|
.RI ( ptr )
|
||||||
and domain name
|
and domain name
|
||||||
.RI ( dom )
|
.RI ( dom ).
|
||||||
.TP
|
.TP
|
||||||
.B cname
|
.B cname
|
||||||
get the system that this name is a nickname for. Returns the nickname
|
get the system that this name is a nickname for. Returns the nickname
|
||||||
.RI ( dom )
|
.RI ( dom )
|
||||||
and the real name
|
and the real name
|
||||||
.RI ( cname )
|
.RI ( cname ).
|
||||||
.TP
|
.TP
|
||||||
.B soa
|
.B soa
|
||||||
return the start of area record for this field. Returns
|
return the start of area record for this field. Returns
|
||||||
|
@ -381,11 +388,26 @@ expiration time in seconds
|
||||||
and minimum time to lie
|
and minimum time to lie
|
||||||
.RI ( ttl ).
|
.RI ( ttl ).
|
||||||
.TP
|
.TP
|
||||||
|
.B srv
|
||||||
|
get the service records. Returns the priority of target host
|
||||||
|
.RI ( priority ),
|
||||||
|
relative weight
|
||||||
|
.RI ( weight )
|
||||||
|
for entries with the same priority,
|
||||||
|
port on this target host of this service
|
||||||
|
.RI ( port ),
|
||||||
|
and the domain name of the target host
|
||||||
|
.RI ( target ).
|
||||||
|
.TP
|
||||||
|
.B txt
|
||||||
|
get the descriptive text. The semantics of the text depends
|
||||||
|
on the domain.
|
||||||
|
.TP
|
||||||
.B ns
|
.B ns
|
||||||
name servers. Returns domain name
|
name servers. Returns domain name
|
||||||
.RI ( dom )
|
.RI ( dom )
|
||||||
and name server
|
and name server
|
||||||
.RI ( ns )
|
.RI ( ns ).
|
||||||
.PP
|
.PP
|
||||||
.I Ndbfindattr
|
.I Ndbfindattr
|
||||||
searches
|
searches
|
||||||
|
|
Loading…
Reference in a new issue