Commit 1d26ae2d authored by obscuren's avatar obscuren

Changed client id

parent d2edc2bb
...@@ -2,11 +2,13 @@ package eth ...@@ -2,11 +2,13 @@ package eth
import ( import (
"bytes" "bytes"
"fmt"
"github.com/ethereum/ethchain-go" "github.com/ethereum/ethchain-go"
"github.com/ethereum/ethutil-go" "github.com/ethereum/ethutil-go"
"github.com/ethereum/ethwire-go" "github.com/ethereum/ethwire-go"
"log" "log"
"net" "net"
"runtime"
"strconv" "strconv"
"strings" "strings"
"sync/atomic" "sync/atomic"
...@@ -438,8 +440,9 @@ func (p *Peer) Stop() { ...@@ -438,8 +440,9 @@ func (p *Peer) Stop() {
} }
func (p *Peer) pushHandshake() error { func (p *Peer) pushHandshake() error {
clientId := fmt.Sprintf("/Ethereum(G) v%s/%s", ethutil.Config.Ver, runtime.GOOS)
msg := ethwire.NewMessage(ethwire.MsgHandshakeTy, []interface{}{ msg := ethwire.NewMessage(ethwire.MsgHandshakeTy, []interface{}{
uint32(3), uint32(0), "/Ethereum(G) v0.0.1/", byte(p.caps), p.port, p.pubkey, uint32(3), uint32(0), clientId, byte(p.caps), p.port, p.pubkey,
}) })
p.QueueMessage(msg) p.QueueMessage(msg)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment