send connection parameters in CHLO

This commit is contained in:
Marten Seemann 2016-12-09 17:42:26 +07:00
parent 1ad3a85f5c
commit f72fbc57a9
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
9 changed files with 150 additions and 35 deletions

View file

@ -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 {