- Aug 01, 2017
-
-
Vladimír Čunát authored
-
- Jul 07, 2017
-
-
Vladimír Čunát authored
-
Vladimír Čunát authored
-
Vitezslav Kriz authored
If CNAME chain occurs CNAME is placed before AAAA.
-
- Jun 13, 2017
-
-
Vladimír Čunát authored
-
- Jun 01, 2017
-
-
Vladimír Čunát authored
Casting is dangerous, e.g. it's easy to misconfigure policy with policy.add(policy.FORWARD('some address')) which lead to segfault without showing any indication of the cause. Now this case will show as .../policy.lua:98: 'struct kr_query' has no member named 'current' and only abort the policy module instead of the whole process.
-
-
- May 17, 2017
-
-
Vladimír Čunát authored
-
- Apr 05, 2017
-
-
Vladimír Čunát authored
Also rename NOAUTH->NONAUTH.
-
Vladimír Čunát authored
... *if* we only want to ask the NSs, i.e. not to be put into answer. This fixes iter_cname_cache test.
-
- Mar 21, 2017
-
-
Vladimír Čunát authored
I see no sane way to set the flags from lua, so I made a C function.
-
Vladimír Čunát authored
-
Vladimír Čunát authored
function `add_file` is added as an alias to `config`, but otherwise the interface is almost identical.
-
Vladimír Čunát authored
- update() had nothing to do in the public interface - config() implementation moved out of the definition of the main table
-
- Mar 15, 2017
-
-
Vladimír Čunát authored
Fixes #167.
-
Vladimír Čunát authored
The output is only better if built with libknot >= 2.4.0. As a side-effect, add lua method knot_rrset_t::txt_dump; it's a light wrapper around knot_rrset_txt_dump. Re-tested rolling with a.moot-servers.net, to be sure.
-
Vladimír Čunát authored
-
- Mar 06, 2017
-
-
- Feb 28, 2017
-
-
engine_cmd() doesn't print the error() exceptions thrown from lua; it only leaves the message on lua stack. (cherry picked from commit a316b9f7)
-
-
- docs: fix cache.current_* since long ago d5272b4b - don't allow "cache.foo = 'bar'" for abitrary foo - restore cache['nic.cz'] after b31bad2ccf while not breaking completion - #cache won't work on lua 5.1, so remove it
-
Štěpán Balážik authored
-
These shouldn't make any problems: - the verbose messages don't print any scope, and - reputation cache doesn't consider scope.
-
- Feb 27, 2017
-
-
Vladimír Čunát authored
The format of TA store is compatible both ways with old kresd. Note: it requires the parent commit to work, i.e. new libzscanner.
-
Vladimír Čunát authored
Comment parsing will only be supported in future libzscanner version. Also move out of the module, as trust_anchors.lua requires it and isn't in a module.
-
- Feb 16, 2017
-
-
Vladimír Čunát authored
-
Vladimír Čunát authored
-
Vladimír Čunát authored
-
- Feb 13, 2017
-
-
Vladimír Čunát authored
engine_cmd() doesn't print the error() exceptions thrown from lua; it only leaves the message on lua stack.
-
Vladimír Čunát authored
-
- Feb 10, 2017
-
-
Petr Špaček authored
-
- Feb 09, 2017
-
-
Vladimír Čunát authored
- Remove abstraction of the refresh callback, as we always use the same function. This way the code is significantly easier to understand. - Add a couple more comments.
-
Vladimír Čunát authored
It was strange to keep it indefinitely, and the code was already half-prepared for this change. Theoretically, if a resolver has been stopped for too long to miss a key's period of Revoked status, it would continue to trust the key forever.
-
Vladimír Čunát authored
- printing refresh time in milliseconds could've been confusing; - move syntactic sugar definitions close to the rest of the table;
-
Vladimír Čunát authored
... via trust_anchors.{bootstrap_url,bootstrap_ca}
-
Vladimír Čunát authored
-
- Feb 08, 2017
-
-
Vladimír Čunát authored
- docs: fix cache.current_* since long ago d5272b4b - don't allow "cache.foo = 'bar'" for abitrary foo - restore cache['nic.cz'] after b31bad2ccf while not breaking completion - #cache won't work on lua 5.1, so remove it
-
- Feb 03, 2017
-
-
Štěpán Balážik authored
-
That will allow us to discover the top-level symbols for completion. For others we can e.g.: for n in pairs(net) do print(n); end I must admit I fail to understand some of the related lua magic.
-