mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
send connection parameters in CHLO
This commit is contained in:
parent
1ad3a85f5c
commit
f72fbc57a9
9 changed files with 150 additions and 35 deletions
|
@ -21,7 +21,10 @@ type mockConnectionParametersManager struct {
|
|||
func (m *mockConnectionParametersManager) SetFromMap(map[handshake.Tag][]byte) error {
|
||||
panic("not implemented")
|
||||
}
|
||||
func (m *mockConnectionParametersManager) GetSHLOMap() map[handshake.Tag][]byte {
|
||||
func (m *mockConnectionParametersManager) GetSHLOMap() (map[handshake.Tag][]byte, error) {
|
||||
panic("not implemented")
|
||||
}
|
||||
func (m *mockConnectionParametersManager) GetCHLOMap() (map[handshake.Tag][]byte, error) {
|
||||
panic("not implemented")
|
||||
}
|
||||
func (m *mockConnectionParametersManager) GetSendStreamFlowControlWindow() protocol.ByteCount {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue