(extFrameNum uint64)
| 217 | } |
| 218 | |
| 219 | func (fc *FrameIntegrityChecker) FrameIntegrity(extFrameNum uint64) bool { |
| 220 | if extFrameNum < fc.base || extFrameNum > fc.last || fc.last-extFrameNum >= uint64(fc.frameCount) { |
| 221 | return false |
| 222 | } |
| 223 | |
| 224 | return fc.frames[int(extFrameNum-fc.base)%fc.frameCount].Integrity() |
| 225 | } |