mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-09-01 00:04:02 +03:00
FILE / ScuroNeko/mtg
antireplay/nilcache.go
Исходный файл и его история в репозитории.
9 lines
276 B
Go
9 lines
276 B
Go
package antireplay
|
|
|
|
type nilCache struct{}
|
|
|
|
func (n nilCache) AddObfuscated2(_ []byte) {}
|
|
func (n nilCache) AddTLS(_ []byte) {}
|
|
func (n nilCache) HasObfuscated2(_ []byte) bool { return false }
|
|
func (n nilCache) HasTLS(_ []byte) bool { return false }
|