aboutsummaryrefslogtreecommitdiffstats
path: root/p2p
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-02-14 07:27:46 +0800
committerobscuren <geffobscura@gmail.com>2015-02-14 07:27:46 +0800
commit65159d65c8c830342b3b1ca666571997209826c5 (patch)
tree195fe0e67d1da523c74c2f971637798e75088741 /p2p
parent84f7c966f725ef0f5c62b4427857d112c0d1e828 (diff)
parent3ff6c9bb7951e306cc78231f7703fb21e369608e (diff)
downloadgo-tangerine-65159d65c8c830342b3b1ca666571997209826c5.tar
go-tangerine-65159d65c8c830342b3b1ca666571997209826c5.tar.gz
go-tangerine-65159d65c8c830342b3b1ca666571997209826c5.tar.bz2
go-tangerine-65159d65c8c830342b3b1ca666571997209826c5.tar.lz
go-tangerine-65159d65c8c830342b3b1ca666571997209826c5.tar.xz
go-tangerine-65159d65c8c830342b3b1ca666571997209826c5.tar.zst
go-tangerine-65159d65c8c830342b3b1ca666571997209826c5.zip
Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop
Diffstat (limited to 'p2p')
-rw-r--r--p2p/protocol.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/p2p/protocol.go b/p2p/protocol.go
index fe359fc54..5fa395eda 100644
--- a/p2p/protocol.go
+++ b/p2p/protocol.go
@@ -1,5 +1,7 @@
package p2p
+import "fmt"
+
// Protocol represents a P2P subprotocol implementation.
type Protocol struct {
// Name should contain the official protocol name,
@@ -37,6 +39,10 @@ func (cap Cap) RlpData() interface{} {
return []interface{}{cap.Name, cap.Version}
}
+func (cap Cap) String() string {
+ return fmt.Sprintf("%s/%d", cap.Name, cap.Version)
+}
+
type capsByName []Cap
func (cs capsByName) Len() int { return len(cs) }