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
f7634611
Commit
f7634611
authored
10 years ago
by
Juan Batiz-Benet
Committed by
Brian Tiger Chow
10 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secured net logs
parent
1439a53b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
net/swarm/conn.go
net/swarm/conn.go
+3
-1
No files found.
net/swarm/conn.go
View file @
f7634611
...
...
@@ -101,12 +101,14 @@ func (s *Swarm) connSetup(c *conn.Conn) error {
return
errors
.
New
(
"Tried to start nil connection."
)
}
u
.
DOut
(
"Starting connection: %s
\n
"
,
c
.
Peer
.
Key
()
.
Pretty
())
//
u.DOut("Starting connection: %s\n", c.Peer.Key().Pretty())
if
err
:=
s
.
connSecure
(
c
);
err
!=
nil
{
return
fmt
.
Errorf
(
"Conn securing error: %v"
,
err
)
}
// u.DOut("Secured connection: %s\n", c.Peer.Key().Pretty())
// add to conns
s
.
connsLock
.
Lock
()
if
_
,
ok
:=
s
.
conns
[
c
.
Peer
.
Key
()];
ok
{
...
...
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