summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjmc <>2012-11-19 16:39:30 +0000
committerjmc <>2012-11-19 16:39:30 +0000
commit02b81b29f81045ee6d53dbbdf9ce83b05a9811cb (patch)
tree0bc156955fc66f63789df31215ec6685b553fde6
parent615b1845447a5cc0b7dba438857ddeb2e38319dc (diff)
downloadopenbsd-02b81b29f81045ee6d53dbbdf9ce83b05a9811cb.tar.gz
openbsd-02b81b29f81045ee6d53dbbdf9ce83b05a9811cb.tar.bz2
openbsd-02b81b29f81045ee6d53dbbdf9ce83b05a9811cb.zip
remove some useless Tn and double punctuation;
-rw-r--r--src/lib/libc/net/resolver.323
1 files changed, 7 insertions, 16 deletions
diff --git a/src/lib/libc/net/resolver.3 b/src/lib/libc/net/resolver.3
index 2dbb69ce28..1982d1c8b1 100644
--- a/src/lib/libc/net/resolver.3
+++ b/src/lib/libc/net/resolver.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: resolver.3,v 1.24 2012/11/19 16:33:48 jmc Exp $ 1.\" $OpenBSD: resolver.3,v 1.25 2012/11/19 16:39:30 jmc Exp $
2.\" 2.\"
3.\" Copyright (c) 1985, 1991, 1993 3.\" Copyright (c) 1985, 1991, 1993
4.\" The Regents of the University of California. All rights reserved. 4.\" The Regents of the University of California. All rights reserved.
@@ -110,13 +110,12 @@ Options stored in
110are defined in 110are defined in
111.Aq Pa resolv.h 111.Aq Pa resolv.h
112and are as follows. 112and are as follows.
113Options are stored as a simple bit mask containing the bitwise 113Options are stored as a simple bit mask containing the bitwise OR
114.Tn OR
115of the options enabled. 114of the options enabled.
116.Bl -tag -width RES_USE_INET6 115.Bl -tag -width RES_USE_INET6
117.It Dv RES_INIT 116.It Dv RES_INIT
118True if the initial name server address and default domain name are 117True if the initial name server address and default domain name are
119initialized (i.e., 118initialized (i.e.\&
120.Fn res_init 119.Fn res_init
121has been called). 120has been called).
122.It Dv RES_DEBUG 121.It Dv RES_DEBUG
@@ -128,23 +127,15 @@ With this option,
128should continue until it finds an authoritative answer or finds an error. 127should continue until it finds an authoritative answer or finds an error.
129Currently this is not implemented. 128Currently this is not implemented.
130.It Dv RES_USEVC 129.It Dv RES_USEVC
131Use 130Use TCP connections for queries instead of UDP datagrams.
132.Tn TCP
133connections for queries instead of
134.Tn UDP
135datagrams.
136.It Dv RES_STAYOPEN 131.It Dv RES_STAYOPEN
137Used with 132Used with
138.Dv RES_USEVC 133.Dv RES_USEVC
139to keep the 134to keep the TCP connection open between queries.
140.Tn TCP
141connection open between queries.
142This is useful only in programs that regularly do many queries. 135This is useful only in programs that regularly do many queries.
143.Tn UDP 136UDP should be the normal mode used.
144should be the normal mode used.
145.It Dv RES_IGNTC 137.It Dv RES_IGNTC
146Ignore truncation errors, i.e., don't retry with 138Ignore truncation errors, i.e. don't retry with TCP.
147.Tn TCP .
148.It Dv RES_RECURSE 139.It Dv RES_RECURSE
149Set the recursion-desired bit in queries. 140Set the recursion-desired bit in queries.
150This is the default. 141This is the default.