temporarily disable sending of Blocked frames

ref #172
This commit is contained in:
Marten Seemann
2016-06-15 12:29:09 +07:00
parent c095261749
commit 37e57c6f05
4 changed files with 5 additions and 4 deletions

View File

@@ -55,6 +55,7 @@ func (p *packetPacker) AddHighPrioStreamFrame(f frames.StreamFrame) {
}
func (p *packetPacker) AddBlocked(streamID protocol.StreamID, byteOffset protocol.ByteCount) {
return
// TODO: send out connection-level BlockedFrames at the right time
// see https://github.com/lucas-clemente/quic-go/issues/113
// TODO: remove this function completely once #113 is resolved