mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
separate connection parameters negotiation and gQUIC handshake parsing
This commit is contained in:
parent
95901cdee4
commit
ebb4150e63
10 changed files with 289 additions and 317 deletions
|
@ -143,15 +143,9 @@ func areSessionsRunning() bool {
|
|||
return strings.Contains(b.String(), "quic-go.(*session).run")
|
||||
}
|
||||
|
||||
type mockConnectionParametersManager struct {
|
||||
}
|
||||
type mockConnectionParametersManager struct{}
|
||||
|
||||
func (m *mockConnectionParametersManager) SetFromMap(map[handshake.Tag][]byte) error {
|
||||
panic("not implement")
|
||||
}
|
||||
func (m *mockConnectionParametersManager) GetHelloMap() (map[handshake.Tag][]byte, error) {
|
||||
panic("not implement")
|
||||
}
|
||||
var _ handshake.ConnectionParametersManager = &mockConnectionParametersManager{}
|
||||
|
||||
func (m *mockConnectionParametersManager) GetSendStreamFlowControlWindow() protocol.ByteCount {
|
||||
return protocol.InitialStreamFlowControlWindow
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue