diff options
author | Bas van Kervel <basvankervel@ziggo.nl> | 2015-06-08 17:01:02 +0800 |
---|---|---|
committer | Bas van Kervel <basvankervel@gmail.com> | 2015-06-11 20:01:39 +0800 |
commit | 2a0d888326036be9cabe6680617ce2d1a27761d3 (patch) | |
tree | 8458bcb21f07fbc5290712029f1f4f78ab54aa5a /cmd/utils | |
parent | 8ebf2d8fad729a8261f237bb05b6073e6c1b652f (diff) | |
download | dexon-2a0d888326036be9cabe6680617ce2d1a27761d3.tar dexon-2a0d888326036be9cabe6680617ce2d1a27761d3.tar.gz dexon-2a0d888326036be9cabe6680617ce2d1a27761d3.tar.bz2 dexon-2a0d888326036be9cabe6680617ce2d1a27761d3.tar.lz dexon-2a0d888326036be9cabe6680617ce2d1a27761d3.tar.xz dexon-2a0d888326036be9cabe6680617ce2d1a27761d3.tar.zst dexon-2a0d888326036be9cabe6680617ce2d1a27761d3.zip |
added API/IPC commandline flags
Diffstat (limited to 'cmd/utils')
-rw-r--r-- | cmd/utils/flags.go | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index ab7eaf023..4c3690d49 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -24,6 +24,9 @@ import ( "github.com/ethereum/go-ethereum/p2p/nat" "github.com/ethereum/go-ethereum/rpc" "github.com/ethereum/go-ethereum/xeth" + "github.com/ethereum/go-ethereum/rpc/api" + "github.com/ethereum/go-ethereum/rpc/comms" + "github.com/ethereum/go-ethereum/rpc/codec" ) func init() { @@ -206,6 +209,20 @@ var ( Usage: "Domain on which to send Access-Control-Allow-Origin header", Value: "", } + IPCDisabledFlag = cli.BoolFlag{ + Name: "ipcdisable", + Usage: "Disable the IPC-RPC server", + } + IPCApiFlag = cli.StringFlag{ + Name: "ipcapi", + Usage: "Specify the API's which are offered over this interface", + Value: api.DefaultIpcApis, + } + IPCPathFlag = DirectoryFlag{ + Name: "ipcpath", + Usage: "Filename for IPC socket/pipe", + Value: DirectoryString{common.DefaultIpcPath()}, + } // Network Settings MaxPeersFlag = cli.IntFlag{ Name: "maxpeers", @@ -368,6 +385,22 @@ func MakeAccountManager(ctx *cli.Context) *accounts.Manager { return accounts.NewManager(ks) } +func StartIPC(eth *eth.Ethereum, ctx *cli.Context) error { + config := comms.IpcConfig{ + Endpoint: ctx.GlobalString(IPCPathFlag.Name), + } + + xeth := xeth.New(eth, nil) + codec := codec.JSON + + apis, err := api.ParseApiString(ctx.GlobalString(IPCApiFlag.Name), codec, xeth, eth) + if err != nil { + return err + } + + return comms.StartIpc(config, codec, apis...) +} + func StartRPC(eth *eth.Ethereum, ctx *cli.Context) error { config := rpc.RpcConfig{ ListenAddress: ctx.GlobalString(RPCListenAddrFlag.Name), |