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
52fb3b41
Commit
52fb3b41
authored
Jan 12, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Increased buffer size
parent
39bb2c94
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
6 deletions
+22
-6
peer.go
peer.go
+20
-3
server.go
server.go
+2
-3
No files found.
peer.go
View file @
52fb3b41
...
...
@@ -9,6 +9,11 @@ import (
"time"
)
const
(
// The size of the output buffer for writing messages
outputBufferSize
=
50
)
type
Peer
struct
{
// Server interface
server
*
Server
...
...
@@ -24,11 +29,12 @@ type Peer struct {
connected
int32
disconnect
int32
lastSend
time
.
Time
versionKnown
bool
}
func
NewPeer
(
conn
net
.
Conn
,
server
*
Server
,
inbound
bool
)
*
Peer
{
return
&
Peer
{
outputQueue
:
make
(
chan
*
ethwire
.
InOutMsg
,
1
),
// Buffered chan of 1 is enough
outputQueue
:
make
(
chan
*
ethwire
.
InOutMsg
,
outputBufferSize
),
quit
:
make
(
chan
bool
),
server
:
server
,
conn
:
conn
,
...
...
@@ -40,7 +46,7 @@ func NewPeer(conn net.Conn, server *Server, inbound bool) *Peer {
func
NewOutboundPeer
(
addr
string
,
server
*
Server
)
*
Peer
{
p
:=
&
Peer
{
outputQueue
:
make
(
chan
*
ethwire
.
InOutMsg
,
1
),
// Buffered chan of 1 is enough
outputQueue
:
make
(
chan
*
ethwire
.
InOutMsg
,
outputBufferSize
),
quit
:
make
(
chan
bool
),
server
:
server
,
inbound
:
false
,
...
...
@@ -61,6 +67,8 @@ func NewOutboundPeer(addr string, server *Server) *Peer {
atomic
.
StoreInt32
(
&
p
.
disconnect
,
0
)
log
.
Println
(
"Connected to peer ::"
,
conn
.
RemoteAddr
())
p
.
Start
()
}()
return
p
...
...
@@ -77,6 +85,14 @@ func (p *Peer) writeMessage(msg *ethwire.InOutMsg) {
return
}
if
!
p
.
versionKnown
{
switch
msg
.
MsgType
{
case
"verack"
:
// Ok
default
:
// Anything but ack is allowed
return
}
}
err
:=
ethwire
.
WriteMessage
(
p
.
conn
,
msg
)
if
err
!=
nil
{
log
.
Println
(
"Can't send message:"
,
err
)
...
...
@@ -191,10 +207,11 @@ func (p *Peer) handleVersionAck(msg *ethwire.InOutMsg) {
log
.
Println
(
"Peer connected to self, disconnecting"
)
p
.
Stop
()
return
}
log
.
Println
(
"mnonce"
,
msg
.
Nonce
,
"snonce"
,
p
.
server
.
Nonce
)
p
.
versionKnown
=
true
// If this is an inbound connection send an ack back
if
p
.
inbound
{
...
...
server.go
View file @
52fb3b41
...
...
@@ -71,9 +71,6 @@ func (s *Server) ConnectToPeer(addr string) error {
s
.
peers
.
PushBack
(
peer
)
peer
.
Start
()
return
nil
}
...
...
@@ -106,6 +103,8 @@ func (s *Server) Start() {
// TMP
go
func
()
{
//time.Sleep(500 * time.Millisecond)
for
{
s
.
Broadcast
(
"block"
,
s
.
blockManager
.
bc
.
GenesisBlock
()
.
MarshalRlp
())
...
...
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