You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-14Lines changed: 6 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ Traditional access to DNS data from applications has several limitations:
19
19
20
20
* Sophisticated uses of the DNS (things like IDNA and DNSSEC validation) require considerable application work, possibly by application developers with little experience with the vagaries of DNS.
21
21
22
-
getdns also provides a experimental DNS Privacy enabled client called 'stubby' - see below for more details.
22
+
getdns also provides an experimental DNS Privacy enabled client called 'stubby' - see below for more details.
23
23
24
24
## Motivation for providing the API
25
25
@@ -78,7 +78,7 @@ before building.
78
78
As well as building the getdns library 2 other tools are installed by default by the above process:
79
79
80
80
* getdns_query: a command line test script wrapper for getdns
81
-
* stubby: a experimental DNS Privacy enabled client
81
+
* stubby: an experimental DNS Privacy enabled client
82
82
83
83
Note: If you only want to build stubby, then use the `--enable-stub-only` and `--without-libidn` options when running 'configure'.
84
84
@@ -197,18 +197,7 @@ Stub mode does not support:
197
197
198
198
# Known Issues
199
199
200
-
* The synchronous lookup functions will not work when new file descriptors
201
-
needed for the lookup will be larger than `FD_SETSIZE`. This is because
202
-
the synchronous functions use a "default" event loop under the hood
203
-
which is based on `select()` and thus inherits the limits that `select()` has.
204
-
205
-
If you need only slightly more file descriptors, it is possible to enlarge
206
-
the `FD_SETSIZE` with the `--with-fd-setsize=`*`size`* flag to `configure`.
207
-
208
-
To resolve, use the asynchronous functions with an event loop extension for
209
-
libevent, libev or libuv. Note that the asynchronous functions will have
210
-
the same problem when used in combination with `getdns_context_run()`, which
0 commit comments