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
7b22bdc6
Commit
7b22bdc6
authored
10 years ago
by
verokarhu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix compile error after sync
parent
600829b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
cmd/ipfs/serve.go
cmd/ipfs/serve.go
+14
-2
No files found.
cmd/ipfs/serve.go
View file @
7b22bdc6
...
...
@@ -6,6 +6,8 @@ import (
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/gonuts/flag"
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/commander"
ma
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multiaddr"
"github.com/jbenet/go-ipfs/daemon"
h
"github.com/jbenet/go-ipfs/server/http"
)
...
...
@@ -48,9 +50,19 @@ func serveHttpCmd(c *commander.Command, _ []string) error {
return
err
}
fmt
.
Println
(
"starting new daemon listener..."
)
dl
,
err
:=
daemon
.
NewDaemonListener
(
n
,
"localhost:12345"
)
// launch the API RPC endpoint.
if
n
.
Config
.
Addresses
.
API
==
""
{
return
errors
.
New
(
"no config.RPCAddress endpoint supplied"
)
}
maddr
,
err
:=
ma
.
NewMultiaddr
(
n
.
Config
.
Addresses
.
API
)
if
err
!=
nil
{
return
err
}
dl
,
err
:=
daemon
.
NewDaemonListener
(
n
,
maddr
)
if
err
!=
nil
{
fmt
.
Println
(
"Failed to create daemon listener."
)
return
err
}
go
dl
.
Listen
()
...
...
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