diff options
author | 2016-03-28 12:08:05 +0100 | |
---|---|---|
committer | 2016-03-28 18:23:17 +0100 | |
commit | e56d206542c901a48b28c4501fe5805e9e9e1a10 (patch) | |
tree | 77a644f6fe28f3de8eaf6f7c766cea73b438b487 /middleware/file/notify.go | |
parent | 6324bb1fa7c0516ef3bebfb822a0cdc767764ad2 (diff) | |
download | coredns-e56d206542c901a48b28c4501fe5805e9e9e1a10.tar.gz coredns-e56d206542c901a48b28c4501fe5805e9e9e1a10.tar.zst coredns-e56d206542c901a48b28c4501fe5805e9e9e1a10.zip |
Support outgoing zone transfers
These can be enabled by adding "transfer out" to the Corefile. Without
it no AXFR is allowed.
For now only AXFR and no IXFR. No TSIG and no ACLs.
Diffstat (limited to 'middleware/file/notify.go')
-rw-r--r-- | middleware/file/notify.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/middleware/file/notify.go b/middleware/file/notify.go new file mode 100644 index 000000000..cb61cc050 --- /dev/null +++ b/middleware/file/notify.go @@ -0,0 +1,8 @@ +package file + +// Notify sends notifies to the configured remotes. It will try up to three times +// before giving up on a specific remote. +func Notify(remotes []string) error { + return nil + +} |