Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
mf
go-multiaddr
Commits
b185168c
Commit
b185168c
authored
Jan 17, 2016
by
Jeromy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modularize multiaddr protocols
parent
dd8f16c4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
protocols.go
protocols.go
+14
-0
No files found.
protocols.go
View file @
b185168c
...
...
@@ -55,6 +55,20 @@ var Protocols = []Protocol{
Protocol
{
P_IPFS
,
LengthPrefixedVarSize
,
"ipfs"
,
CodeToVarint
(
P_IPFS
)},
}
func
AddProtocol
(
p
Protocol
)
error
{
for
_
,
pt
:=
range
Protocols
{
if
pt
.
Code
==
p
.
Code
{
return
fmt
.
Errorf
(
"protocol code %d already taken by %q"
,
p
.
Code
,
pt
.
Name
)
}
if
pt
.
Name
==
p
.
Name
{
return
fmt
.
Errorf
(
"protocol by the name %q already exists"
,
p
.
Name
)
}
}
Protocols
=
append
(
Protocols
,
p
)
return
nil
}
// ProtocolWithName returns the Protocol description with given string name.
func
ProtocolWithName
(
s
string
)
Protocol
{
for
_
,
p
:=
range
Protocols
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment