-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from multiformats/fix/global-multiaddr-registry
fix: move multiaddr definitions to the multiaddr library
- Loading branch information
Showing
5 changed files
with
18 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,24 @@ | ||
package madns | ||
|
||
import ( | ||
"bytes" | ||
"fmt" | ||
|
||
ma "github.com/multiformats/go-multiaddr" | ||
) | ||
|
||
// Extracted from source of truth for multicodec codes: https://github.com/multiformats/multicodec | ||
const ( | ||
P_DNS4 = 0x0036 | ||
P_DNS6 = 0x0037 | ||
P_DNSADDR = 0x0038 | ||
// Deprecated: use ma.P_DNS4 | ||
P_DNS4 = ma.P_DNS4 | ||
// Deprecated: use ma.P_DNS6 | ||
P_DNS6 = ma.P_DNS6 | ||
// Deprecated: use ma.P_DNSADDR | ||
P_DNSADDR = ma.P_DNSADDR | ||
) | ||
|
||
var Dns4Protocol = ma.Protocol{ | ||
Code: P_DNS4, | ||
Size: ma.LengthPrefixedVarSize, | ||
Name: "dns4", | ||
VCode: ma.CodeToVarint(P_DNS4), | ||
Transcoder: DnsTranscoder, | ||
} | ||
var Dns6Protocol = ma.Protocol{ | ||
Code: P_DNS6, | ||
Size: ma.LengthPrefixedVarSize, | ||
Name: "dns6", | ||
VCode: ma.CodeToVarint(P_DNS6), | ||
Transcoder: DnsTranscoder, | ||
} | ||
var DnsaddrProtocol = ma.Protocol{ | ||
Code: P_DNSADDR, | ||
Size: ma.LengthPrefixedVarSize, | ||
Name: "dnsaddr", | ||
VCode: ma.CodeToVarint(P_DNSADDR), | ||
Transcoder: DnsTranscoder, | ||
} | ||
|
||
func init() { | ||
err := ma.AddProtocol(Dns4Protocol) | ||
if err != nil { | ||
panic(fmt.Errorf("error registering dns4 protocol: %s", err)) | ||
} | ||
err = ma.AddProtocol(Dns6Protocol) | ||
if err != nil { | ||
panic(fmt.Errorf("error registering dns6 protocol: %s", err)) | ||
} | ||
err = ma.AddProtocol(DnsaddrProtocol) | ||
if err != nil { | ||
panic(fmt.Errorf("error registering dnsaddr protocol: %s", err)) | ||
} | ||
} | ||
|
||
var DnsTranscoder = ma.NewTranscoderFromFunctions(dnsStB, dnsBtS, dnsVal) | ||
|
||
func dnsVal(b []byte) error { | ||
if bytes.IndexByte(b, '/') >= 0 { | ||
return fmt.Errorf("domain name %q contains a slash", string(b)) | ||
} | ||
return nil | ||
} | ||
// Deprecated: use ma.ProtocolWithCode(P_DNS4) | ||
var Dns4Protocol = ma.ProtocolWithCode(P_DNS4) | ||
|
||
func dnsStB(s string) ([]byte, error) { | ||
return []byte(s), nil | ||
} | ||
// Deprecated: use ma.ProtocolWithCode(P_DNS6) | ||
var Dns6Protocol = ma.ProtocolWithCode(P_DNS6) | ||
|
||
func dnsBtS(b []byte) (string, error) { | ||
return string(b), nil | ||
} | ||
// Deprecated: use ma.ProtocolWithCode(P_DNSADDR) | ||
var DnsaddrProtocol = ma.ProtocolWithCode(P_DNSADDR) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
module github.com/multiformats/go-multiaddr-dns | ||
|
||
require github.com/multiformats/go-multiaddr v0.0.1 | ||
require github.com/multiformats/go-multiaddr v0.1.0 | ||
|
||
go 1.12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.