Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
24349bc4
Commit
24349bc4
authored
Feb 08, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed peer format
parent
1f7b13ff
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
peer.go
peer.go
+9
-6
No files found.
peer.go
View file @
24349bc4
...
...
@@ -106,7 +106,7 @@ type Peer struct {
// this to prevent receiving false peers.
requestedPeerList
bool
host
[]
byte
host
[]
interface
{}
port
uint16
caps
Caps
}
...
...
@@ -314,7 +314,8 @@ out:
}
// Amount of parents in the canonical chain
amountOfBlocks
:=
msg
.
Data
.
Get
(
l
)
.
AsUint
()
//amountOfBlocks := msg.Data.Get(l).AsUint()
amountOfBlocks
:=
uint64
(
100
)
// Check each SHA block hash from the message and determine whether
// the SHA is in the database
for
i
:=
0
;
i
<
l
;
i
++
{
...
...
@@ -326,8 +327,10 @@ out:
// If a parent is found send back a reply
if
parent
!=
nil
{
log
.
Printf
(
"HASH %x (len %d) Amount = %d)
\n
"
,
parent
.
Hash
(),
l
,
amountOfBlocks
)
chain
:=
p
.
ethereum
.
BlockManager
.
BlockChain
()
.
GetChainFromHash
(
parent
.
Hash
(),
amountOfBlocks
)
p
.
QueueMessage
(
ethwire
.
NewMessage
(
ethwire
.
MsgBlockTy
,
append
(
chain
,
amountOfBlocks
)))
//log.Printf("%q\n", chain)
p
.
QueueMessage
(
ethwire
.
NewMessage
(
ethwire
.
MsgBlockTy
,
chain
))
}
else
{
// If no blocks are found we send back a reply with msg not in chain
// and the last hash from get chain
...
...
@@ -349,13 +352,13 @@ out:
p
.
Stop
()
}
func
packAddr
(
address
,
port
string
)
([]
byte
,
uint16
)
{
func
packAddr
(
address
,
port
string
)
([]
interface
{}
,
uint16
)
{
addr
:=
strings
.
Split
(
address
,
"."
)
a
,
_
:=
strconv
.
Atoi
(
addr
[
0
])
b
,
_
:=
strconv
.
Atoi
(
addr
[
1
])
c
,
_
:=
strconv
.
Atoi
(
addr
[
2
])
d
,
_
:=
strconv
.
Atoi
(
addr
[
3
])
host
:=
[]
byte
{
byte
(
a
),
byte
(
b
),
byte
(
c
),
byte
(
d
)}
host
:=
[]
interface
{}
{
byte
(
a
),
byte
(
b
),
byte
(
c
),
byte
(
d
)}
prt
,
_
:=
strconv
.
Atoi
(
port
)
return
host
,
uint16
(
prt
)
...
...
@@ -417,7 +420,7 @@ func (p *Peer) Stop() {
func
(
p
*
Peer
)
pushHandshake
()
error
{
msg
:=
ethwire
.
NewMessage
(
ethwire
.
MsgHandshakeTy
,
[]
interface
{}{
uint32
(
0
),
uint32
(
0
),
"/Ethereum(G) v0.0.1/"
,
byte
(
p
.
caps
),
p
.
port
,
uint32
(
1
),
uint32
(
0
),
"/Ethereum(G) v0.0.1/"
,
byte
(
p
.
caps
),
p
.
port
,
})
p
.
QueueMessage
(
msg
)
...
...
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