good morning!!!!
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
bor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open
bor
Commits
474aa924
Commit
474aa924
authored
9 years ago
by
Jeffrey Wilcke
Browse files
Options
Downloads
Patches
Plain Diff
p2p: added limiter function to limit package broadcasting
parent
b7e1b686
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
p2p/server.go
+13
-0
13 additions, 0 deletions
p2p/server.go
with
13 additions
and
0 deletions
p2p/server.go
+
13
−
0
View file @
474aa924
...
...
@@ -136,6 +136,12 @@ func (srv *Server) SuggestPeer(n *discover.Node) {
// Broadcast sends an RLP-encoded message to all connected peers.
// This method is deprecated and will be removed later.
func
(
srv
*
Server
)
Broadcast
(
protocol
string
,
code
uint64
,
data
interface
{})
error
{
return
srv
.
BroadcastLimited
(
protocol
,
code
,
func
(
i
float64
)
float64
{
return
i
},
data
)
}
// BroadcastsRange an RLP-encoded message to a random set of peers using the limit function to limit the amount
// of peers.
func
(
srv
*
Server
)
BroadcastLimited
(
protocol
string
,
code
uint64
,
limit
func
(
float64
)
float64
,
data
interface
{})
error
{
var
payload
[]
byte
if
data
!=
nil
{
var
err
error
...
...
@@ -146,7 +152,13 @@ func (srv *Server) Broadcast(protocol string, code uint64, data interface{}) err
}
srv
.
lock
.
RLock
()
defer
srv
.
lock
.
RUnlock
()
i
,
max
:=
0
,
int
(
limit
(
float64
(
len
(
srv
.
peers
))))
for
_
,
peer
:=
range
srv
.
peers
{
if
i
>=
max
{
break
}
if
peer
!=
nil
{
var
msg
=
Msg
{
Code
:
code
}
if
data
!=
nil
{
...
...
@@ -154,6 +166,7 @@ func (srv *Server) Broadcast(protocol string, code uint64, data interface{}) err
msg
.
Size
=
uint32
(
len
(
payload
))
}
peer
.
writeProtoMsg
(
protocol
,
msg
)
i
++
}
}
return
nil
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment