mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
implement the MAX_DATA and MAX_STREAM_DATA frames
For gQUIC WINDOW_UPDATEs are converted to MAX_DATA and MAX_STREAM_DATA, respectively.
This commit is contained in:
parent
ccb2e9a2df
commit
0f1f1c8d41
18 changed files with 512 additions and 168 deletions
|
@ -2,6 +2,7 @@ package quic
|
|||
|
||||
import (
|
||||
"github.com/golang/mock/gomock"
|
||||
"github.com/lucas-clemente/quic-go/internal/protocol"
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
|
||||
|
@ -13,8 +14,18 @@ func TestQuicGo(t *testing.T) {
|
|||
RunSpecs(t, "QUIC Suite")
|
||||
}
|
||||
|
||||
const (
|
||||
versionCryptoStream1 = protocol.Version39
|
||||
versionCryptoStream0 = protocol.VersionTLS
|
||||
)
|
||||
|
||||
var mockCtrl *gomock.Controller
|
||||
|
||||
var _ = BeforeSuite(func() {
|
||||
Expect(versionCryptoStream0.CryptoStreamID()).To(Equal(protocol.StreamID(0)))
|
||||
Expect(versionCryptoStream1.CryptoStreamID()).To(Equal(protocol.StreamID(1)))
|
||||
})
|
||||
|
||||
var _ = BeforeEach(func() {
|
||||
mockCtrl = gomock.NewController(GinkgoT())
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue