File tree 6 files changed +65
-262
lines changed
6 files changed +65
-262
lines changed Original file line number Diff line number Diff line change 9
9
jobs :
10
10
11
11
build :
12
+
13
+ strategy :
14
+ matrix :
15
+ go :
16
+ - " 1.19"
17
+ - " 1.20"
18
+
12
19
runs-on : ubuntu-latest
13
20
steps :
14
21
- uses : actions/checkout@v2
15
22
16
23
- name : Set up Go
17
24
uses : actions/setup-go@v2
18
25
with :
19
- go-version : 1.15
26
+ go-version : ${{ matrix.go }}
20
27
21
28
- name : Build
22
29
run : go build -v ./...
Original file line number Diff line number Diff line change 4
4
"net"
5
5
"time"
6
6
7
- "github.com/lucas-clemente /quic-go"
7
+ "github.com/quic-go /quic-go"
8
8
)
9
9
10
10
var _ quic.OOBCapablePacketConn = (* filteredConnObb )(nil )
Original file line number Diff line number Diff line change @@ -8,12 +8,13 @@ import (
8
8
"sync"
9
9
"sync/atomic"
10
10
11
- "github.com/lucas-clemente /quic-go"
11
+ "github.com/quic-go /quic-go"
12
12
"golang.org/x/net/ipv4"
13
13
"golang.org/x/net/ipv6"
14
14
)
15
15
16
16
// These are both the same, socket.Message, just have type aliases.
17
+ //
17
18
//goland:noinspection GoVarAndConstTypeMayBeOmitted
18
19
var _ ipv4.Message = ipv6.Message {}
19
20
Original file line number Diff line number Diff line change 1
1
module github.com/AudriusButkevicius/pfilter
2
2
3
- go 1.15
3
+ go 1.20
4
4
5
5
require (
6
- github.com/lucas-clemente/quic-go v0.22.0
7
6
github.com/pkg/errors v0.9.1
8
- golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
9
- golang.org/x/net v0.0.0-20210716203947-853a461950ff
10
- golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
11
- golang.org/x/tools v0.1.5 // indirect
7
+ github.com/quic-go/quic-go v0.32.0
8
+ golang.org/x/net v0.4.0
9
+ )
10
+
11
+ require (
12
+ github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
13
+ github.com/golang/mock v1.6.0 // indirect
14
+ github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
15
+ github.com/onsi/ginkgo/v2 v2.2.0 // indirect
16
+ github.com/quic-go/qtls-go1-18 v0.2.0 // indirect
17
+ github.com/quic-go/qtls-go1-19 v0.2.0 // indirect
18
+ github.com/quic-go/qtls-go1-20 v0.1.0 // indirect
19
+ golang.org/x/crypto v0.4.0 // indirect
20
+ golang.org/x/exp v0.0.0-20221205204356-47842c84f3db // indirect
21
+ golang.org/x/mod v0.6.0 // indirect
22
+ golang.org/x/sys v0.3.0 // indirect
23
+ golang.org/x/tools v0.2.0 // indirect
12
24
)
You can’t perform that action at this time.
0 commit comments