File tree Expand file tree Collapse file tree 8 files changed +10
-10
lines changed Expand file tree Collapse file tree 8 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ require (
11
11
)
12
12
13
13
require (
14
+ github.com/coder/websocket v1.8.12 // indirect
14
15
github.com/davecgh/go-spew v1.1.1 // indirect
15
16
github.com/golang/glog v1.2.2 // indirect
16
17
github.com/pkg/errors v0.9.1 // indirect
@@ -20,7 +21,6 @@ require (
20
21
google.golang.org/genproto/googleapis/rpc v0.0.0-20240528184218-531527333157 // indirect
21
22
google.golang.org/protobuf v1.34.1 // indirect
22
23
gopkg.in/yaml.v3 v3.0.1 // indirect
23
- nhooyr.io/websocket v1.8.11 // indirect
24
24
)
25
25
26
26
replace golang.stackrox.io/grpc-http1 => ../
Original file line number Diff line number Diff line change
1
+ github.com/coder/websocket v1.8.12 h1:5bUXkEPPIbewrnkU8LTCLVaxi4N4J8ahufH2vlo4NAo =
2
+ github.com/coder/websocket v1.8.12 /go.mod h1:LNVeNrXQZfe5qhS9ALED3uA+l5pPqvwXg3CKoDBB2gs =
1
3
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c =
2
4
github.com/davecgh/go-spew v1.1.1 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
3
5
github.com/golang/glog v1.2.2 h1:1+mZ9upx1Dh6FmUTFR1naJ77miKiXgALjWOZ3NVFPmY =
@@ -27,5 +29,3 @@ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+
27
29
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
28
30
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA =
29
31
gopkg.in/yaml.v3 v3.0.1 /go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM =
30
- nhooyr.io/websocket v1.8.11 h1:f/qXNc2/3DpoSZkHt1DQu6rj4zGC8JmkkLkWss0MgN0 =
31
- nhooyr.io/websocket v1.8.11 /go.mod h1:rN9OFWIUwuxg4fR5tELlYC04bXYowCP9GX47ivo2l+c =
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ import (
27
27
"sync"
28
28
"sync/atomic"
29
29
30
+ "github.com/coder/websocket"
30
31
"github.com/golang/glog"
31
32
"github.com/pkg/errors"
32
33
"golang.stackrox.io/grpc-http1/internal/grpcproto"
@@ -35,7 +36,6 @@ import (
35
36
"golang.stackrox.io/grpc-http1/internal/pipeconn"
36
37
"golang.stackrox.io/grpc-http1/internal/size"
37
38
"google.golang.org/grpc/codes"
38
- "nhooyr.io/websocket"
39
39
)
40
40
41
41
const (
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ module golang.stackrox.io/grpc-http1
3
3
go 1.19
4
4
5
5
require (
6
+ github.com/coder/websocket v1.8.12
6
7
github.com/golang/glog v1.2.2
7
8
github.com/pkg/errors v0.9.1
8
9
github.com/stretchr/testify v1.9.0
9
10
golang.org/x/net v0.28.0
10
11
google.golang.org/grpc v1.65.0
11
- nhooyr.io/websocket v1.8.11
12
12
)
13
13
14
14
require (
Original file line number Diff line number Diff line change
1
+ github.com/coder/websocket v1.8.12 h1:5bUXkEPPIbewrnkU8LTCLVaxi4N4J8ahufH2vlo4NAo =
2
+ github.com/coder/websocket v1.8.12 /go.mod h1:LNVeNrXQZfe5qhS9ALED3uA+l5pPqvwXg3CKoDBB2gs =
1
3
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c =
2
4
github.com/davecgh/go-spew v1.1.1 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
3
5
github.com/golang/glog v1.2.2 h1:1+mZ9upx1Dh6FmUTFR1naJ77miKiXgALjWOZ3NVFPmY =
@@ -25,5 +27,3 @@ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+
25
27
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
26
28
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA =
27
29
gopkg.in/yaml.v3 v3.0.1 /go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM =
28
- nhooyr.io/websocket v1.8.11 h1:f/qXNc2/3DpoSZkHt1DQu6rj4zGC8JmkkLkWss0MgN0 =
29
- nhooyr.io/websocket v1.8.11 /go.mod h1:rN9OFWIUwuxg4fR5tELlYC04bXYowCP9GX47ivo2l+c =
Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ import (
19
19
"context"
20
20
"io"
21
21
22
+ "github.com/coder/websocket"
22
23
"github.com/golang/glog"
23
24
"golang.stackrox.io/grpc-http1/internal/grpcproto"
24
25
"golang.stackrox.io/grpc-http1/internal/ioutils"
25
- "nhooyr.io/websocket"
26
26
)
27
27
28
28
// Write the contents of the reader along the WebSocket connection.
Original file line number Diff line number Diff line change @@ -22,14 +22,14 @@ import (
22
22
"sync"
23
23
"unicode"
24
24
25
+ "github.com/coder/websocket"
25
26
"github.com/golang/glog"
26
27
"golang.stackrox.io/grpc-http1/internal/grpcweb"
27
28
"golang.stackrox.io/grpc-http1/internal/grpcwebsocket"
28
29
"golang.stackrox.io/grpc-http1/internal/size"
29
30
"golang.stackrox.io/grpc-http1/internal/sliceutils"
30
31
"golang.stackrox.io/grpc-http1/internal/stringutils"
31
32
"google.golang.org/grpc"
32
- "nhooyr.io/websocket"
33
33
)
34
34
35
35
const (
Original file line number Diff line number Diff line change @@ -19,9 +19,9 @@ import (
19
19
"context"
20
20
"io"
21
21
22
+ "github.com/coder/websocket"
22
23
"github.com/pkg/errors"
23
24
"golang.stackrox.io/grpc-http1/internal/grpcproto"
24
- "nhooyr.io/websocket"
25
25
)
26
26
27
27
// readerResult stores the output from calls to (*wsReader).conn.Reader
You can’t perform that action at this time.
0 commit comments