init sets the initial window.
(n int32)
| 20 | |
| 21 | // init sets the initial window. |
| 22 | func (f *inflow) init(n int32) { |
| 23 | f.avail = n |
| 24 | } |
| 25 | |
| 26 | // add adds n bytes to the window, with a maximum window size of max, |
| 27 | // indicating that the peer can now send us more data. |
no outgoing calls