2
0
mirror of https://github.com/soheilhy/cmux.git synced 2024-09-19 18:45:48 +08:00

Do not write SETTINGS in response to ACKs.

Reported-by talgendler in Issue #42
This commit is contained in:
Soheil Hassas Yeganeh 2018-01-29 10:44:55 -05:00
parent 444ce56efe
commit e496b358da

View File

@ -240,6 +240,11 @@ func matchHTTP2Field(w io.Writer, r io.Reader, name string, matches func(string)
switch f := f.(type) {
case *http2.SettingsFrame:
// Sender acknoweldged the SETTINGS frame. No need to write
// SETTINGS again.
if f.IsAck() {
break
}
if err := framer.WriteSettings(); err != nil {
return false
}