aboutsummaryrefslogtreecommitdiffstats
path: root/ethwire/client_identity.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-10-31 21:53:42 +0800
committerobscuren <geffobscura@gmail.com>2014-10-31 21:53:42 +0800
commit4914a78c8c650d7fc74570f25a682598aaeb6973 (patch)
treeeca4eef360d5202d51d5d8766072848ebcb185e3 /ethwire/client_identity.go
parentaf34749a6b47ff8f9b4cb55d9ea65e1235d63b68 (diff)
downloadgo-tangerine-4914a78c8c650d7fc74570f25a682598aaeb6973.tar.gz
go-tangerine-4914a78c8c650d7fc74570f25a682598aaeb6973.tar.zst
go-tangerine-4914a78c8c650d7fc74570f25a682598aaeb6973.zip
ethwire => wire
Diffstat (limited to 'ethwire/client_identity.go')
-rw-r--r--ethwire/client_identity.go56
1 files changed, 0 insertions, 56 deletions
diff --git a/ethwire/client_identity.go b/ethwire/client_identity.go
deleted file mode 100644
index ceaa9fe83..000000000
--- a/ethwire/client_identity.go
+++ /dev/null
@@ -1,56 +0,0 @@
-package ethwire
-
-import (
- "fmt"
- "runtime"
-)
-
-// should be used in Peer handleHandshake, incorporate Caps, ProtocolVersion, Pubkey etc.
-type ClientIdentity interface {
- String() string
-}
-
-type SimpleClientIdentity struct {
- clientIdentifier string
- version string
- customIdentifier string
- os string
- implementation string
-}
-
-func NewSimpleClientIdentity(clientIdentifier string, version string, customIdentifier string) *SimpleClientIdentity {
- clientIdentity := &SimpleClientIdentity{
- clientIdentifier: clientIdentifier,
- version: version,
- customIdentifier: customIdentifier,
- os: runtime.GOOS,
- implementation: runtime.Version(),
- }
-
- return clientIdentity
-}
-
-func (c *SimpleClientIdentity) init() {
-}
-
-func (c *SimpleClientIdentity) String() string {
- var id string
- if len(c.customIdentifier) > 0 {
- id = "/" + c.customIdentifier
- }
-
- return fmt.Sprintf("%s/v%s%s/%s/%s",
- c.clientIdentifier,
- c.version,
- id,
- c.os,
- c.implementation)
-}
-
-func (c *SimpleClientIdentity) SetCustomIdentifier(customIdentifier string) {
- c.customIdentifier = customIdentifier
-}
-
-func (c *SimpleClientIdentity) GetCustomIdentifier() string {
- return c.customIdentifier
-}