Skip to content

Commit 69e1389

Browse files
committed
README, protocol: fix links to RFC 5730
1 parent 5b70050 commit 69e1389

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Extensible Provisioning Protocol (EPP) for [Go](https://go.dev/).
77

8-
[EPP](https://tools.ietf.org/html/rfc5730) is an XML-based protocol for provisioning and managing domain names and other objects at domain name registries. The underlying transport is usually TLS, secured with password authentication, IP allow lists, and [mTLS](https://en.wikipedia.org/wiki/Mutual_authentication).
8+
[EPP](https://datatracker.ietf.org/doc/rfc5730/) is an XML-based protocol for provisioning and managing domain names and other objects at domain name registries. The underlying transport is usually TLS, secured with password authentication, IP allow lists, and [mTLS](https://en.wikipedia.org/wiki/Mutual_authentication).
99

1010
**Note:** This is a fork of [domainr/epp](https://github.com/domainr/epp) to develop and test the next version of its API. You should probably use it instead.
1111

protocol/client.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ import (
1414
)
1515

1616
// Client is a low-level client for the Extensible Provisioning Protocol (EPP)
17-
// as defined in RFC 3790. See https://www.rfc-editor.org/rfc/rfc5730.html.
17+
// as defined in [RFC 5730].
1818
// A Client is safe to use from multiple goroutines.
19+
//
20+
// [RFC 5730]: https://datatracker.ietf.org/doc/rfc5730/
1921
type Client interface {
2022
// Command sends an EPP command and returns an EPP response.
2123
// It blocks until a response is received, ctx is canceled, or

0 commit comments

Comments
 (0)