Searched defs:http2priorityNode (Results 1 – 1 of 1) sorted by relevance
11163 type http2priorityNode struct { struct11164 q http2writeQueue // queue of pending frames to write11165 id uint32 // id of the stream, or 0 for the root of the tree11166 weight uint8 // the actual weight is weight+1, so the value is in [1,256]11167 state http2priorityNodeState // open | closed | idle11168 bytes int64 // number of bytes written by this node, or 0 if closed11169 subtreeBytes int64 // sum(node.bytes) of all nodes in this subtree11172 parent *http2priorityNode11173 kids *http2priorityNode // start of the kids list11174 prev, next *http2priorityNode // doubly-linked list of siblings[all …]