Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | rpc: fix closure problem in batch processing (#14688) | bloonfield | 2017-06-26 | 1 | -2/+2 |
| | | | Demo of the issue: https://play.golang.org/p/EeTLFfppqC | ||||
* | rpc: disable CORS if user has not specified custom config | Bas van Kervel | 2017-05-02 | 1 | -0/+5 |
| | |||||
* | cmd/utils, node: remove unused solc references and improve RPC config (#14324) | bas-vk | 2017-04-13 | 1 | -8/+3 |
| | | | | | Currently http cors and websocket origins are a comma separated string in the config object. These are replaced with string arrays that are more expressive in case of a config file. | ||||
* | all: import "context" instead of "golang.org/x/net/context" | Felix Lange | 2017-03-23 | 1 | -3/+3 |
| | | | | | | | | | | There is no need to depend on the old context package now that the minimum Go version is 1.7. The move to "context" eliminates our weird vendoring setup. Some vendored code still uses golang.org/x/net/context and it is now vendored in the normal way. This change triggered new vet checks around context.WithTimeout which didn't fire with golang.org/x/net/context. | ||||
* | rpc: add support for extended headers in CORS requests (#3783) | Micah Zoltu | 2017-03-16 | 1 | -0/+1 |
| | | | | Fixes #3762. Details about parameter: https://github.com/rs/cors/blob/a62a804a8a009876ca59105f7899938a1349f4b3/cors.go#L50-L54 | ||||
* | internal/debug, internal/ethapi, rpc, swarm/storage: Ran "go fmt" | Kenji Siu | 2016-11-01 | 1 | -1/+1 |
| | |||||
* | rpc: set CORS Max-Age to reduce preflight OPTIONS requests | Jonathan Brown | 2016-10-03 | 1 | -0/+1 |
| | |||||
* | rpc: add new client, use it everywhere | Felix Lange | 2016-07-23 | 1 | -65/+98 |
| | | | | | | The new client implementation supports concurrent requests, subscriptions and replaces the various ad hoc RPC clients throughout go-ethereum. | ||||
* | rpc: various fixes/enhancements | Bas van Kervel | 2016-04-12 | 1 | -14/+6 |
| | | | | | | | | rpc: be less restrictive on the request id rpc: improved documentation console: upgrade web3.js to version 0.16.0 rpc: cache http connections rpc: rename wsDomains parameter to wsOrigins | ||||
* | rpc: add pub/sub support | Bas van Kervel | 2016-04-02 | 1 | -1/+1 |
| | |||||
* | rpc/http: improve request handling | Bas van Kervel | 2016-03-23 | 1 | -221/+56 |
| | |||||
* | cmd, node, rpc: readd inproc RPC client, expose via node | Péter Szilágyi | 2016-02-09 | 1 | -1/+1 |
| | |||||
* | cmd, common, node, rpc: move HTTP RPC into node, drop singletone aspect | Péter Szilágyi | 2016-02-05 | 1 | -54/+7 |
| | |||||
* | rpc: allow RPC requests on GET too | Péter Szilágyi | 2016-02-03 | 1 | -23/+17 |
| | |||||
* | rpc: migrated the RPC insterface to a new reflection based RPC layer | Bas van Kervel | 2016-01-26 | 1 | -0/+368 |
| | |||||
* | removed old rpc structure and added new inproc api client | Bas van Kervel | 2015-06-22 | 1 | -163/+0 |
| | |||||
* | Permit multiple CORS domains | Taylor Gerring | 2015-05-18 | 1 | -1/+2 |
| | | | | Separated by spaces | ||||
* | Unreverse ordering | Taylor Gerring | 2015-05-15 | 1 | -2/+1 |
| | |||||
* | Omit replies for notification requests | Taylor Gerring | 2015-05-15 | 1 | -3/+22 |
| | | | | When Id is missing, the client does not want a response | ||||
* | rpc, xeth: fix #881, gracefully handle offline whisper | Péter Szilágyi | 2015-05-11 | 1 | -1/+1 |
| | |||||
* | Remove old logger from RPC pkg | Taylor Gerring | 2015-04-27 | 1 | -3/+2 |
| | |||||
* | Don't export types/functions | Bas van Kervel | 2015-04-19 | 1 | -4/+4 |
| | |||||
* | Replaced channel pointer field with non pointer channel | Bas van Kervel | 2015-04-19 | 1 | -1/+1 |
| | |||||
* | Stop accepted and alive connections (http keep-alive) when the rpc service ↵ | Bas van Kervel | 2015-04-17 | 1 | -11/+11 |
| | | | | is stopped | ||||
* | admin.stopRPC support added which stops the RPC HTTP listener | Bas van Kervel | 2015-04-16 | 1 | -2/+19 |
| | |||||
* | rpc: changed logging to use glog | obscuren | 2015-04-15 | 1 | -2/+3 |
| | |||||
* | Add settable domain to CORS handler #331 | Taylor Gerring | 2015-03-30 | 1 | -3/+17 |
| | |||||
* | Abstract http into rpc package | Taylor Gerring | 2015-03-30 | 1 | -0/+12 |
| | | | | New RpcConfig object to pass growing config | ||||
* | Report InvalidTypeError as -32602 to JSON RPC | Taylor Gerring | 2015-03-29 | 1 | -1/+1 |
| | |||||
* | Use ExtraDB for storage. Fixes #577 | Taylor Gerring | 2015-03-27 | 1 | -2/+2 |
| | |||||
* | Make send internal | Taylor Gerring | 2015-03-20 | 1 | -6/+6 |
| | |||||
* | Remove extra logger | Taylor Gerring | 2015-03-20 | 1 | -2/+2 |
| | |||||
* | Remove JsonWrapper | Taylor Gerring | 2015-03-18 | 1 | -6/+19 |
| | |||||
* | Support JSON RPC batch requests | Taylor Gerring | 2015-03-18 | 1 | -33/+52 |
|\ | |||||
| * | Add JSON RPC batch support | Taylor Gerring | 2015-03-18 | 1 | -33/+52 |
| | | | | | | | | http://www.jsonrpc.org/specification#batch | ||||
* | | rpc | zelig | 2015-03-15 | 1 | -7/+7 |
|/ | | | | | - camelcase fields dont play nice with otto value magic: JsonRpc -> Jsonrpc, ID -> Id - jeth: ethereum.js rpc transport provider direct bridge between js and ethereumApi via otto jsre | ||||
* | Consolidate error type switch | Taylor Gerring | 2015-03-13 | 1 | -14/+2 |
| | |||||
* | Convert to proper errors | Taylor Gerring | 2015-03-13 | 1 | -5/+34 |
| | | | | Allow returning different JSON RPC error codes depending on error type | ||||
* | Merge ethereum/poc-9 into accounts-integration | Felix Lange | 2015-03-10 | 1 | -1/+11 |
| | | | | | | | | | | Conflicts: cmd/utils/cmd.go cmd/utils/flags.go core/manager.go eth/backend.go rpc/http/server.go xeth/xeth.go | ||||
* | rpc: add dataDir parameter and JSON-RPC handler | Felix Lange | 2015-03-10 | 1 | -0/+42 |