aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/vendor.json
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2019-07-22 18:22:39 +0800
committerPéter Szilágyi <peterke@gmail.com>2019-07-22 18:22:39 +0800
commit04e175b8ecc95080742aa8c8be68b155433a13bf (patch)
tree27f1f2ed55a32b7305f92df5827bf5c7cc58db59 /vendor/vendor.json
parente8141e168560b8b1d2b50658c454adbfa905dacc (diff)
downloadgo-tangerine-04e175b8ecc95080742aa8c8be68b155433a13bf.tar
go-tangerine-04e175b8ecc95080742aa8c8be68b155433a13bf.tar.gz
go-tangerine-04e175b8ecc95080742aa8c8be68b155433a13bf.tar.bz2
go-tangerine-04e175b8ecc95080742aa8c8be68b155433a13bf.tar.lz
go-tangerine-04e175b8ecc95080742aa8c8be68b155433a13bf.tar.xz
go-tangerine-04e175b8ecc95080742aa8c8be68b155433a13bf.tar.zst
go-tangerine-04e175b8ecc95080742aa8c8be68b155433a13bf.zip
rpc: implement websockets with github.com/gorilla/websocket (#19866)
* rpc: implement websockets with github.com/gorilla/websocket This change makes package rpc use the github.com/gorilla/websocket package for WebSockets instead of golang.org/x/net/websocket. The new library is more robust and supports all WebSocket features including continuation frames. There are new tests for two issues with the previously-used library: - TestWebsocketClientPing checks handling of Ping frames. - TestWebsocketLargeCall checks whether the request size limit is applied correctly. * rpc: raise HTTP/WebSocket request size limit to 5MB * rpc: remove default origin for client connections The client used to put the local hostname into the Origin header because the server wanted an origin to accept the connection, but that's silly: Origin is for browsers/websites. The nobody would whitelist a particular hostname. Now that the server doesn't need Origin anymore, don't bother setting one for clients. Users who need an origin can use DialWebsocket to create a client with arbitrary origin if needed. * vendor: put golang.org/x/net/websocket back * rpc: don't set Origin header for empty (default) origin * rpc: add HTTP status code to handshake error This makes it easier to debug failing connections. * ethstats: use github.com/gorilla/websocket * rpc: fix lint
Diffstat (limited to 'vendor/vendor.json')
-rw-r--r--vendor/vendor.json10
1 files changed, 8 insertions, 2 deletions
diff --git a/vendor/vendor.json b/vendor/vendor.json
index 59796181b..00eeedc90 100644
--- a/vendor/vendor.json
+++ b/vendor/vendor.json
@@ -153,6 +153,12 @@
"revisionTime": "2017-02-15T23:32:05Z"
},
{
+ "checksumSHA1": "hoilQzrHNOxF5Tc6ctXNTDpv4ck=",
+ "path": "github.com/gorilla/websocket",
+ "revision": "ae1634f6a98965ded3b8789c626cb4e0bd78c3de",
+ "revisionTime": "2019-06-29T18:55:28Z"
+ },
+ {
"checksumSHA1": "d9PxF1XQGLMJZRct2R8qVM/eYlE=",
"path": "github.com/hashicorp/golang-lru",
"revision": "0a025b7e63adc15a622f29b0b2c4c3848243bbf6",
@@ -667,8 +673,8 @@
{
"checksumSHA1": "F+tqxPGFt5x7DKZakbbMmENX1oQ=",
"path": "golang.org/x/net/websocket",
- "revision": "eb5bcb51f2a31c7d5141d810b70815c05d9c9146",
- "revisionTime": "2019-04-03T01:06:53Z"
+ "revision": "da137c7871d730100384dbcf36e6f8fa493aef5b",
+ "revisionTime": "2019-06-28T18:40:41Z"
},
{
"checksumSHA1": "4TEYFKrAUuwBMqExjQBsnf/CgjQ=",