github.com/xtls/xray-core@v1.8.12-0.20240518155711-3168d27b0bdb/common/antireplay/antireplay.go (about)

     1  package antireplay
     2  
     3  type GeneralizedReplayFilter interface {
     4  	Interval() int64
     5  	Check(sum []byte) bool
     6  }