Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
ecddbd3a
Commit
ecddbd3a
authored
10 years ago
by
Brian Tiger Chow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(mux) hold lock when reading default handler field
parent
d0e5538b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
p2p/protocol/mux.go
p2p/protocol/mux.go
+3
-3
No files found.
p2p/protocol/mux.go
View file @
ecddbd3a
...
...
@@ -24,11 +24,11 @@ type streamHandlerMap map[ID]inet.StreamHandler
// It contains the handlers for each protocol accepted.
// It dispatches handlers for streams opened by remote peers.
type
Mux
struct
{
// defaultHandler handles unknown protocols. Callers modify at your own risk.
defaultHandler
inet
.
StreamHandler
lock
sync
.
RWMutex
handlers
streamHandlerMap
// defaultHandler handles unknown protocols. Callers modify at your own risk.
defaultHandler
inet
.
StreamHandler
}
func
NewMux
()
*
Mux
{
...
...
@@ -59,8 +59,8 @@ func (m *Mux) readHeader(s io.Reader) (ID, inet.StreamHandler, error) {
// log.Debug("readHeader got:", p)
m
.
lock
.
RLock
()
defer
m
.
lock
.
RUnlock
()
h
,
found
:=
m
.
handlers
[
p
]
m
.
lock
.
RUnlock
()
switch
{
case
!
found
&&
m
.
defaultHandler
!=
nil
:
...
...
This diff is collapsed.
Click to expand it.
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