v2ray-core/proxy/vmess/user.go

44 lines
665 B
Go
Raw Normal View History

2015-12-07 19:32:38 +00:00
package vmess
2015-10-16 10:03:22 +00:00
import (
"math/rand"
)
2015-10-30 23:38:31 +00:00
type UserLevel int
const (
2015-10-31 13:08:13 +00:00
UserLevelAdmin = UserLevel(999)
UserLevelUntrusted = UserLevel(0)
2015-10-30 23:38:31 +00:00
)
type User struct {
ID *ID
AlterIDs []*ID
Level UserLevel
}
func (this *User) AnyValidID() *ID {
if len(this.AlterIDs) == 0 {
return this.ID
}
if len(this.AlterIDs) == 1 {
return this.AlterIDs[0]
}
idx := rand.Intn(len(this.AlterIDs))
return this.AlterIDs[idx]
2015-12-12 23:10:35 +00:00
}
2015-10-30 23:38:31 +00:00
type UserSettings struct {
2015-10-31 13:08:13 +00:00
PayloadReadTimeout int
2015-10-30 23:38:31 +00:00
}
func GetUserSettings(level UserLevel) UserSettings {
2015-10-31 13:08:13 +00:00
settings := UserSettings{
PayloadReadTimeout: 120,
}
if level > 0 {
settings.PayloadReadTimeout = 0
}
return settings
2015-10-16 10:03:22 +00:00
}