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
c41a9717
Commit
c41a9717
authored
10 years ago
by
Jeromy
Committed by
Juan Batiz-Benet
10 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make disconnects and reconnects work a little better
parent
da1890e5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
1 deletion
+7
-1
cmd/ipfs/ipfs.go
cmd/ipfs/ipfs.go
+1
-1
crypto/spipe/handshake.go
crypto/spipe/handshake.go
+4
-0
fuse/readonly/readonly_unix.go
fuse/readonly/readonly_unix.go
+1
-0
path/path.go
path/path.go
+1
-0
No files found.
cmd/ipfs/ipfs.go
View file @
c41a9717
...
...
@@ -4,7 +4,7 @@ import (
"errors"
"fmt"
"os"
"runtime
/pprof
"
"runtime"
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/gonuts/flag"
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/commander"
...
...
This diff is collapsed.
Click to expand it.
crypto/spipe/handshake.go
View file @
c41a9717
...
...
@@ -229,6 +229,8 @@ func (s *SecurePipe) handleSecureIn(hashType string, tIV, tCKey, tMKey []byte) {
for
{
data
,
ok
:=
<-
s
.
insecure
.
In
if
!
ok
{
u
.
DOut
(
"Closing incoming proxy.
\n
"
)
close
(
secureIn
)
return
}
...
...
@@ -265,6 +267,8 @@ func (s *SecurePipe) handleSecureOut(hashType string, mIV, mCKey, mMKey []byte)
for
{
data
,
ok
:=
<-
s
.
Out
if
!
ok
{
u
.
DOut
(
"Closing outgoing proxy.
\n
"
)
close
(
secureOut
)
return
}
...
...
This diff is collapsed.
Click to expand it.
fuse/readonly/readonly_unix.go
View file @
c41a9717
...
...
@@ -168,6 +168,7 @@ func Mount(ipfs *core.IpfsNode, fpath string) error {
}
time
.
Sleep
(
time
.
Millisecond
*
10
)
}
ipfs
.
Swarm
.
Close
()
}()
c
,
err
:=
fuse
.
Mount
(
fpath
)
...
...
This diff is collapsed.
Click to expand it.
path/path.go
View file @
c41a9717
...
...
@@ -38,6 +38,7 @@ func (s *Resolver) ResolvePath(fpath string) (*merkledag.Node, error) {
// first element in the path is a b58 hash (for now)
h
,
err
:=
mh
.
FromB58String
(
parts
[
0
])
if
err
!=
nil
{
u
.
DOut
(
"given path element is not a base58 string.
\n
"
)
return
nil
,
err
}
...
...
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