()
| 21 | } |
| 22 | |
| 23 | func (r *FrameBodyReader) Position() int64 { |
| 24 | pos, _ := r.Seek(0, io.SeekCurrent) // Doesn't fail |
| 25 | return pos |
| 26 | } |
| 27 | |
| 28 | func (r *FrameBodyReader) BytesSince(pos int64) []byte { |
| 29 | return r.Body[pos:r.Position()] |
no outgoing calls
no test coverage detected