|
|
@ -41,6 +41,7 @@ var ( |
|
|
|
StartRpc bool |
|
|
|
StartRpc bool |
|
|
|
StartWebSockets bool |
|
|
|
StartWebSockets bool |
|
|
|
RpcPort int |
|
|
|
RpcPort int |
|
|
|
|
|
|
|
WsPort int |
|
|
|
NatType string |
|
|
|
NatType string |
|
|
|
PMPGateway string |
|
|
|
PMPGateway string |
|
|
|
OutboundPort string |
|
|
|
OutboundPort string |
|
|
@ -96,6 +97,7 @@ func Init() { |
|
|
|
flag.StringVar(&PMPGateway, "pmp", "", "Gateway IP for PMP") |
|
|
|
flag.StringVar(&PMPGateway, "pmp", "", "Gateway IP for PMP") |
|
|
|
flag.IntVar(&MaxPeer, "maxpeer", 30, "maximum desired peers") |
|
|
|
flag.IntVar(&MaxPeer, "maxpeer", 30, "maximum desired peers") |
|
|
|
flag.IntVar(&RpcPort, "rpcport", 8080, "port to start json-rpc server on") |
|
|
|
flag.IntVar(&RpcPort, "rpcport", 8080, "port to start json-rpc server on") |
|
|
|
|
|
|
|
flag.IntVar(&WsPort, "wsport", 40404, "port to start websocket rpc server on") |
|
|
|
flag.BoolVar(&StartRpc, "rpc", false, "start rpc server") |
|
|
|
flag.BoolVar(&StartRpc, "rpc", false, "start rpc server") |
|
|
|
flag.BoolVar(&StartWebSockets, "ws", false, "start websocket server") |
|
|
|
flag.BoolVar(&StartWebSockets, "ws", false, "start websocket server") |
|
|
|
flag.BoolVar(&NonInteractive, "y", false, "non-interactive mode (say yes to confirmations)") |
|
|
|
flag.BoolVar(&NonInteractive, "y", false, "non-interactive mode (say yes to confirmations)") |
|
|
|