mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-07-02 17:58:46 +00:00
7 lines
105 B
Go
7 lines
105 B
Go
|
|
package antireplay
|
||
|
|
|
||
|
|
type GeneralizedReplayFilter interface {
|
||
|
|
Interval() int64
|
||
|
|
Check(sum []byte) bool
|
||
|
|
}
|