diff --git a/ChangeLog b/ChangeLog index 12f94aae..a70879dc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,10 @@ -* 2015-06-??: Version 0.?.? +* 2015-07-??: Version 0.?.? * Unit test for spurious execute bits. Thanks Paul Wouters. * Added new transport list options in API. The option is now an ordered list of GETDNS_TRANSPORT_UDP, GETDNS_TRANSPORT_TCP, GETDNS_TRANSPORT_TLS, GETDNS_TRANSPORT_STARTTLS. * Added new context setting for idle_timeout + * CSYNC RR type * 2015-05-21: Version 0.2.0 * Fix libversion numbering: Thanks Daniel Kahn Gillmor diff --git a/spec/getdns-0.6.tgz b/spec/getdns-0.6.tgz deleted file mode 100644 index 442ab1bb..00000000 Binary files a/spec/getdns-0.6.tgz and /dev/null differ diff --git a/spec/getdns-0.601.tgz b/spec/getdns-0.601.tgz new file mode 100644 index 00000000..9e4a584e Binary files /dev/null and b/spec/getdns-0.601.tgz differ diff --git a/spec/index.html b/spec/index.html index b6ead3e1..a98e37c0 100644 --- a/spec/index.html +++ b/spec/index.html @@ -1380,6 +1380,9 @@ and public_key (a bindata)

OPENPGPKEY (61)

openpgpkey_unknown (a bindata)

+

CSYNC (62)

+

serial (an int), flags (an int), and type_bit_maps (a bindata)

+

SPF (99)

text (a bindata)

@@ -2193,24 +2196,8 @@ getdns_context_set_dns_transport( The value is GETDNS_TRANSPORT_UDP_FIRST_AND_FALL_BACK_TO_TCP, GETDNS_TRANSPORT_UDP_ONLY, -GETDNS_TRANSPORT_TCP_ONLY, -GETDNS_TRANSPORT_TCP_ONLY_KEEP_CONNECTIONS_OPEN>, -GETDNS_TRANSPORT_TLS_ONLY_KEEP_CONNECTIONS_OPEN>, or -GETDNS_TRANSPORT_TLS_FIRST_AND_FALL_BACK_TO_TCP_KEEP_CONNECTIONS_OPEN> - -
-getdns_return_t -getdns_context_set_dns_transport_list( - size_t transport_list, - getdns_transport_list_t *transports -);
-

The transports array contains an ordered list -of transports that will be used for DNS lookups. The -values are -GETDNS_TRANSPORT_UDP, -GETDNS_TRANSPORT_TCP, -GETDNS_TRANSPORT_TLS>, or -GETDNS_TRANSPORT_STARTTLS> +GETDNS_TRANSPORT_TCP_ONLY, or +GETDNS_TRANSPORT_TCP_ONLY_KEEP_CONNECTIONS_OPEN.

getdns_return_t @@ -2233,16 +2220,6 @@ getdns_context_set_timeout(

Specifies number of milliseconds the API will wait for request to return. The default is not specified.

-
-getdns_return_t -getdns_context_set_idle_timeout( - getdns_context *context, - uint64_t timeout -);
-

Specifies number of milliseconds the API will leave an idle TCP, TLS or STARTTLS -connection open for (idle means no outstanding responses and no pending queries). -The default is 0.

-

8.4 Context for Recursive Resolvers

@@ -2454,8 +2431,7 @@ The response dicts inherit the custom memory management functions and the value

Change related to getdns_context_set_memory_functions

GETDNS_CONTEXT_CODE_TIMEOUT

Change related to getdns_context_set_timeout

-

GETDNS_CONTEXT_CODE_IDLE_TIMEOUT

-

Change related to getdns_context_set_idle_timeout

+

8.11 Getting API information and current Contexts

An application might want to see information about the API itself and inspect the current context. @@ -2486,7 +2462,7 @@ getdns_pretty_print_dict() for debugging.

9. The Generated Files

-

There is a tarball that includes the .h files, +

There is a tarball that includes the .h files, the examples, and so on. The examples all make, even though there is no API implementation, based on a pseudo-implementation in the tarball; see make-examples-PLATFORM.sh. Note that this currently builds fine on the Macintosh and Ubuntu; help is definitely appreciated on making the build process diff --git a/src/dnssec.c b/src/dnssec.c index 4576f202..e9784c63 100644 --- a/src/dnssec.c +++ b/src/dnssec.c @@ -164,7 +164,7 @@ * * They both evaluate the DNSSEC status for each head in turn. The worst * DNSSEC status determines the status of all heads evaluated. Where - * INSECURE is worse then SECURE, and BOGUS is worse then INSECURE. + * INSECURE is worse than SECURE, and BOGUS is worse than INSECURE. * * For each head, each trust anchor is tried. Here the best DNSSEC status * determines the status of the head.