(streamID uint32)
| 694 | ) |
| 695 | |
| 696 | func validStreamIDOrZero(streamID uint32) bool { |
| 697 | return streamID&(1<<31) == 0 |
| 698 | } |
| 699 | |
| 700 | func validStreamID(streamID uint32) bool { |
| 701 | return streamID != 0 && streamID&(1<<31) == 0 |
no outgoing calls
no test coverage detected
searching dependent graphs…