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
9b1c99e9
Commit
9b1c99e9
authored
10 years ago
by
Jeromy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shrink msgio buffer size to decrease memory pressure
parent
32417724
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
9 deletions
+15
-9
crypto/spipe/handshake.go
crypto/spipe/handshake.go
+8
-6
crypto/spipe/spipe_test.go
crypto/spipe/spipe_test.go
+1
-1
net/conn/conn.go
net/conn/conn.go
+6
-2
No files found.
crypto/spipe/handshake.go
View file @
9b1c99e9
...
...
@@ -184,13 +184,15 @@ func (s *SecurePipe) handshake() error {
}
cmp
:=
bytes
.
Compare
(
myPubKey
,
proposeResp
.
GetPubkey
())
mIV
,
tIV
,
mCKey
,
tCKey
,
mMKey
,
tMKey
:=
ci
.
KeyStretcher
(
cmp
,
cipherType
,
hashType
,
secret
)
//ci.KeyStretcher(cmp, cipherType, hashType, secret)
go
s
.
handleSecureIn
(
hashType
,
cipherType
,
tIV
,
tCKey
,
tMKey
)
go
s
.
handleSecureOut
(
hashType
,
cipherType
,
mIV
,
mCKey
,
mMKey
)
if
true
{
mIV
,
tIV
,
mCKey
,
tCKey
,
mMKey
,
tMKey
:=
ci
.
KeyStretcher
(
cmp
,
cipherType
,
hashType
,
secret
)
/*
go
s
.
handleSecureIn
(
hashType
,
cipherType
,
tIV
,
tCKey
,
tMKey
)
go
s
.
handleSecureOut
(
hashType
,
cipherType
,
mIV
,
mCKey
,
mMKey
)
}
else
{
log
.
Critical
(
"Secure Channel Disabled! PLEASE ENSURE YOU KNOW WHAT YOU ARE DOING"
)
// Disable Secure Channel
go
func
(
sp
*
SecurePipe
)
{
for
{
...
...
@@ -220,7 +222,7 @@ func (s *SecurePipe) handshake() error {
}
}
}(
s
)
*/
}
finished
:=
[]
byte
(
"Finished"
)
...
...
This diff is collapsed.
Click to expand it.
crypto/spipe/spipe_test.go
View file @
9b1c99e9
...
...
@@ -7,8 +7,8 @@ import (
ci
"github.com/jbenet/go-ipfs/crypto"
"github.com/jbenet/go-ipfs/peer"
"github.com/jbenet/go-ipfs/pipes"
"github.com/jbenet/go-ipfs/util"
"github.com/jbenet/go-ipfs/util/pipes"
)
func
getPeer
(
tb
testing
.
TB
)
peer
.
Peer
{
...
...
This diff is collapsed.
Click to expand it.
net/conn/conn.go
View file @
9b1c99e9
...
...
@@ -22,7 +22,7 @@ const (
ChanBuffer
=
10
// MaxMessageSize is the size of the largest single message
MaxMessageSize
=
1
<<
2
2
// 4 MB
MaxMessageSize
=
1
<<
2
1
// 4 MB
// HandshakeTimeout for when nodes first connect
HandshakeTimeout
=
time
.
Second
*
5
...
...
@@ -39,7 +39,11 @@ func init() {
}
func
ReleaseBuffer
(
b
[]
byte
)
{
log
.
Warningf
(
"Releasing buffer! (size = %d)"
,
cap
(
b
))
log
.
Warningf
(
"Releasing buffer! (cap,size = %d, %d)"
,
cap
(
b
),
len
(
b
))
if
cap
(
b
)
!=
MaxMessageSize
{
log
.
Warning
(
"Release buffer failed."
)
return
}
BufferPool
.
Put
(
b
[
:
cap
(
b
)])
}
...
...
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