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
d894d638
Commit
d894d638
authored
10 years ago
by
verokarhu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
daemon listener to http serve code
parent
8eb95faf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
cmd/ipfs/serve.go
cmd/ipfs/serve.go
+13
-4
No files found.
cmd/ipfs/serve.go
View file @
d894d638
...
...
@@ -3,8 +3,10 @@ package main
import
(
"errors"
"fmt"
"github.com/gonuts/flag"
"github.com/jbenet/commander"
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/gonuts/flag"
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/commander"
"github.com/jbenet/go-ipfs/daemon"
h
"github.com/jbenet/go-ipfs/server/http"
)
...
...
@@ -36,13 +38,20 @@ func serveHttpCmd(c *commander.Command, _ []string) error {
return
errors
.
New
(
"invalid port number"
)
}
hostname
:=
c
.
Flag
.
Lookup
(
"hostname"
)
.
Value
.
Get
()
.
(
string
)
n
,
err
:=
localNode
(
true
)
if
err
!=
nil
{
return
err
}
n
,
err
:=
localNode
()
fmt
.
Println
(
"starting new daemon listener..."
)
dl
,
err
:=
daemon
.
NewDaemonListener
(
n
,
"localhost:12345"
)
if
err
!=
nil
{
return
err
}
go
dl
.
Listen
()
defer
dl
.
Close
()
hostname
:=
c
.
Flag
.
Lookup
(
"hostname"
)
.
Value
.
Get
()
.
(
string
)
address
:=
fmt
.
Sprintf
(
"%s:%d"
,
hostname
,
port
)
fmt
.
Printf
(
"Serving on %s
\n
"
,
address
)
...
...
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