change StreamCallback to include the session

This commit is contained in:
Lucas Clemente 2016-04-18 14:01:35 +02:00
parent 57b144bdef
commit 07e7708506
2 changed files with 3 additions and 3 deletions

View file

@ -32,7 +32,7 @@ func main() {
}
}
func handleStream(stream *quic.Stream) []frames.Frame {
func handleStream(session *quic.Session, stream *quic.Stream) []frames.Frame {
var reply bytes.Buffer
h2framer := http2.NewFramer(&reply, stream)
h2framer.ReadMetaHeaders = hpack.NewDecoder(1024, nil)