We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2428d74 commit db3485cCopy full SHA for db3485c
.travis.yml
@@ -0,0 +1,14 @@
1
+language: go
2
+
3
+go:
4
+ - 1.9.x
5
+ - tip
6
7
+before_install:
8
+ - go get -v ./...
9
10
+script:
11
+ - go test -race -coverprofile=coverage.txt -covermode=atomic
12
13
+after_success:
14
+ - bash <(curl -s https://codecov.io/bash)
client/main.go
@@ -76,7 +76,7 @@ func main() {
76
return &tls.Config{InsecureSkipVerify: true}
77
}
78
79
- // transfer data between p1(quic side) and p2(tcp side).
+ // transfer data between p1(tcp side) and p2(quic side).
80
transfer := func(p1 io.ReadWriteCloser) {
81
if !config.Quiet {
82
fmt.Println("stream opened")
0 commit comments