aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-04-01 18:38:29 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-04-01 18:38:29 +0800
commit720d978e356bba74160dbdd95b51bcb8087fb92e (patch)
tree27e56e9c426331c660331e4d0b8bf81b10ac95a4 /cmd/geth
parent4e8f8cfab701bb6c4ad2b8cf166d642f408ca398 (diff)
parent35d00e00c52ad7d7c13e53b598e61fc332052f7b (diff)
downloadgo-tangerine-720d978e356bba74160dbdd95b51bcb8087fb92e.tar
go-tangerine-720d978e356bba74160dbdd95b51bcb8087fb92e.tar.gz
go-tangerine-720d978e356bba74160dbdd95b51bcb8087fb92e.tar.bz2
go-tangerine-720d978e356bba74160dbdd95b51bcb8087fb92e.tar.lz
go-tangerine-720d978e356bba74160dbdd95b51bcb8087fb92e.tar.xz
go-tangerine-720d978e356bba74160dbdd95b51bcb8087fb92e.tar.zst
go-tangerine-720d978e356bba74160dbdd95b51bcb8087fb92e.zip
Merge pull request #589 from tgerring/corssetting
Configurable CORS domain
Diffstat (limited to 'cmd/geth')
-rw-r--r--cmd/geth/admin.go16
-rw-r--r--cmd/geth/main.go1
2 files changed, 12 insertions, 5 deletions
diff --git a/cmd/geth/admin.go b/cmd/geth/admin.go
index 3a58b8881..b217e88b5 100644
--- a/cmd/geth/admin.go
+++ b/cmd/geth/admin.go
@@ -2,8 +2,6 @@ package main
import (
"fmt"
- "net"
- "net/http"
"os"
"time"
@@ -70,12 +68,20 @@ func (js *jsre) startRPC(call otto.FunctionCall) otto.Value {
return otto.FalseValue()
}
- l, err := net.Listen("tcp", fmt.Sprintf("%s:%d", addr, port))
+ config := rpc.RpcConfig{
+ ListenAddress: addr,
+ ListenPort: uint(port),
+ // CorsDomain: ctx.GlobalString(RPCCORSDomainFlag.Name),
+ }
+
+ xeth := xeth.New(js.ethereum, nil)
+ err = rpc.Start(xeth, config)
+
if err != nil {
- fmt.Printf("Can't listen on %s:%d: %v", addr, port, err)
+ fmt.Printf(err.Error())
return otto.FalseValue()
}
- go http.Serve(l, rpc.JSONRPC(xeth.New(js.ethereum, nil)))
+
return otto.TrueValue()
}
diff --git a/cmd/geth/main.go b/cmd/geth/main.go
index 05e2e4ae6..62e30ac9a 100644
--- a/cmd/geth/main.go
+++ b/cmd/geth/main.go
@@ -233,6 +233,7 @@ JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Conso
utils.VMDebugFlag,
utils.ProtocolVersionFlag,
utils.NetworkIdFlag,
+ utils.RPCCORSDomainFlag,
}
// missing: