Skip to content

Commit 5267f8d

Browse files
committed
Updates texts
1 parent b018a02 commit 5267f8d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "axfrnotify"
33
version = "0.0.4"
44
authors = ["Lukas Pustina <lukas@pustina.net>"]
5-
description = "Sends an NOTIFY message to a secondary name server to initiate a zone refresh for a specific domain name."
5+
description = "Sends a NOTIFY request to a secondary name server to initiate a zone refresh for a specific domain name."
66
repository = "https://github.com/lukaspustina/axfr_notify.git"
77
documentation = "http://lukaspustina.github.io/axfr_notify"
88
readme = "README.md"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# axfrnotify
22

3-
Sends a NOTIFY message to a secondary name server to initiate a zone refresh for a specific domain name.
3+
Sends a NOTIFY request to a secondary name server to initiate a zone refresh for a specific domain name.
44

5-
axfrnotify sends a special DNS request called a NOTIFY to inform a secondary DNS server to update its zone information for a specific domain. The mechanism is described in [RFC 1996](https://www.ietf.org/rfc/rfc1996.txt). Once a secondary DNS server receives this request it shall initiate a zone transfer from the primary DNS server responsible for the particular zone; see [RFC 5936](https://tools.ietf.org/html/rfc5936)
5+
axfrnotify sends a special DNS request called a NOTIFY to inform a secondary DNS server to update its zone information for a specific domain. The mechanism is described in [RFC 1996](https://www.ietf.org/rfc/rfc1996.txt). Once a secondary DNS server receives this request it shall initiate a zone transfer from the primary DNS server responsible for the particular zone; see [RFC 5936](https://tools.ietf.org/html/rfc5936).
66

77
RFC 1996 only specifies notification for the SOA resource record type, but axfrnotify allows you to send notification for other resource record types as well.
88

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! axfrnotify sends a NOTIFY message to a secondary name server to initiate a zone refresh for a specific domain name.
1+
//! axfrnotify sends a NOTIFY request to a secondary name server to initiate a zone refresh for a specific domain name.
22
#![deny(missing_docs)]
33

44
extern crate clap;

0 commit comments

Comments
 (0)