diff options
| author | Shulhan <ms@kilabit.info> | 2021-11-14 14:01:10 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2021-11-14 14:01:10 +0700 |
| commit | 7e545957536142a995ee8176c2b2a44f085e5dfb (patch) | |
| tree | f04f16bf8f71bbfcceb996462f66ea3768d3e0ee /CHANGELOG.adoc | |
| parent | be4d9303ec1a8e99047b7c2719b48497481eac40 (diff) | |
| download | rescached-7e545957536142a995ee8176c2b2a44f085e5dfb.tar.xz | |
all: update share module
The update bring new features and enhancements for DNS server.
* add support to save and load caches to/from storage
rescached now able to save and load caches to local storage upon
restart.
On POSIX, the caches is stored in /var/cache/rescached/rescached.gob,
encoded using gob.
Update #9
* remove the fallback name servers (NS) from server options
The original idea of fallback NS is to send the query to the one
define in resolv.conf, instead of using the one defined by user in
ServerOptions NameServers, when an error occured.
But, most of error usually caused by network (disconnected, time out),
so re-sending query to fallback NS does not have any effect if the
network it self is not working.
This changes remove the unnecessary and complex fallback NS from
server.
* do not cache truncated answer
Previously only answer with non-zero response code is ignored.
This changes ignore also answer where response header is truncated.
* lib/dns: make the TCP forwarders as complementary of UDP
The TCP forwarders only active when client send the DNS request as TCP.
When the server receive that request it should also forward the request
as TCP not as UDP to prevent the truncated response.
Another use case for TCP is when the response is truncated, the client
will send the query back through TCP connection. The server should
forward this request using TCP instead of UDP.
Diffstat (limited to 'CHANGELOG.adoc')
| -rw-r--r-- | CHANGELOG.adoc | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index c9ea516..15fc88e 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -1,3 +1,50 @@ += Rescached v4.1.0 (2021-11-xx) + +== New features + +* Add support to save and load caches to/from storage upon restart + + rescached now able to save and load caches to local storage upon restart. + + On POSIX, the caches is stored in /var/cache/rescached/rescached.gob, + encoded using gob. + + Update #9 + +== Bug fixes + +* make the TCP forwarders as complementary of UDP + + The TCP forwarders only active when client send the DNS request as TCP. + When the server receive that request it should also forward the request + as TCP not as UDP to prevent the truncated response. + + Another use case for TCP is when the response is truncated, the client + will send the query back through TCP connection. The server should + forward this request using TCP instead of UDP. + +== Enhancements + +* remove the fallback name servers (NS) from server options + + The original idea of fallback NS is to send the query to the one + define in resolv.conf, instead of using the one defined by user in + ServerOptions NameServers, when an error occured. + + But, most of error usually caused by network (disconnected, time out), + so re-sending query to fallback NS does not have any effect if the + network it self is not working. + + This changes remove the unnecessary and complex fallback NS from + server. + +* Do not cache truncated answer + + Previously only answer with non-zero response code is ignored. + + This changes ignore also answer where response header is truncated. + + = Rescached v4.0.0 (2021-01-25) == New features |
