(streamID uint32)
| 698 | } |
| 699 | |
| 700 | func validStreamID(streamID uint32) bool { |
| 701 | return streamID != 0 && streamID&(1<<31) == 0 |
| 702 | } |
| 703 | |
| 704 | // writeData writes a DATA frame. |
| 705 | // |
no outgoing calls
no test coverage detected
searching dependent graphs…