1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-20 14:35:23 +00:00
v2fly/common/protocol/user_validator.go

13 lines
178 B
Go
Raw Normal View History

2016-02-25 15:40:43 +00:00
package protocol
import (
2016-08-20 18:55:45 +00:00
"v2ray.com/core/common"
2016-02-25 15:40:43 +00:00
)
type UserValidator interface {
2016-04-25 16:39:30 +00:00
common.Releasable
2016-02-25 15:40:43 +00:00
Add(user *User) error
Get(timeHash []byte) (*User, Timestamp, bool)
}