tape: Add limits to the API

This commit is contained in:
2025-08-28 09:31:14 -04:00
parent 80c7d25c73
commit 9d40b81e00
2 changed files with 24 additions and 0 deletions

13
tape/limits.go Normal file
View File

@@ -0,0 +1,13 @@
package tape
// MaxStructureLength determines how long a TAPE data structure can be. This
// applies to:
//
// - OTA
// - SBA/LBA
// - KTV
//
// By default it is set at 2^20 (about a million).
// You shouldn't need to change this. If you do, it should only be set once at
// the start of the program.
var MaxStructureLength = 1024 * 1024