adding a comment.

This commit is contained in:
Kazu Yamamoto 2016-06-16 15:22:30 +09:00
parent c25a6851d9
commit f70b54d7d7

View File

@ -96,7 +96,7 @@ data Sequence = SFinish
-- | The context for HTTP/2 connection.
data Context = Context {
-- HTTP/2 settings received from a browser
-- HTTP/2 settings received from a browser
http2settings :: !(IORef Settings)
, firstSettings :: !(IORef Bool)
, streamTable :: !StreamTable
@ -113,6 +113,7 @@ data Context = Context {
, controlQ :: !(TQueue Control)
, encodeDynamicTable :: !DynamicTable
, decodeDynamicTable :: !DynamicTable
-- the connection window for data from a server to a browser.
, connectionWindow :: !(TVar WindowSize)
}