diff options
author | Marek Vavruša <mvavrusa@cloudflare.com> | 2018-04-06 07:48:51 +0200 |
---|---|---|
committer | Vladimír Čunát <vladimir.cunat@nic.cz> | 2018-04-23 17:49:33 +0200 |
commit | 98c8d35364b90a8bf2f3705526c68931917152b6 (patch) | |
tree | 152ab52f4172cb296efc9b92be76e648bc1c78d7 /lib/module.h | |
parent | lua: added typecheck for string-to-dname conversion (diff) | |
download | knot-resolver-98c8d35364b90a8bf2f3705526c68931917152b6.tar.xz knot-resolver-98c8d35364b90a8bf2f3705526c68931917152b6.zip |
add bindings for the checkout layer
This one was missing from the current bindings. The checkout layer
runs when the worker attempts to send a DNS query to given upstream
when the address is already determined. The layer can add EDNS options
or update outbound query, or block particular addresses / protocol.
Diffstat (limited to 'lib/module.h')
-rw-r--r-- | lib/module.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/module.h b/lib/module.h index 945283cc..74acf601 100644 --- a/lib/module.h +++ b/lib/module.h @@ -35,7 +35,7 @@ struct kr_prop; */ #define KR_MODULE_EXPORT(module) \ KR_EXPORT uint32_t module ## _api() { return KR_MODULE_API; } -#define KR_MODULE_API ((uint32_t) 0x20161108) +#define KR_MODULE_API ((uint32_t) 0x20180401) typedef uint32_t (module_api_cb)(void); |