Changed client id

This commit is contained in:
obscuren 2014-02-10 11:45:08 +01:00
parent d2edc2bbf4
commit 1d26ae2dea
1 changed files with 4 additions and 1 deletions

View File

@ -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() {
} }
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)