1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-17 08:23:41 -04:00
v2fly/proxy/vmess/protocol/testing/static_userset.go

22 lines
487 B
Go
Raw Normal View History

2015-11-09 18:05:25 -05:00
package mocks
import (
2015-12-12 15:40:16 -05:00
"github.com/v2ray/v2ray-core/common/uuid"
2015-12-07 14:32:38 -05:00
"github.com/v2ray/v2ray-core/proxy/vmess"
2016-01-12 05:52:40 -05:00
"github.com/v2ray/v2ray-core/proxy/vmess/protocol"
2015-11-09 18:05:25 -05:00
)
type StaticUserSet struct {
}
func (us *StaticUserSet) AddUser(user *vmess.User) error {
2015-11-09 18:05:25 -05:00
return nil
}
func (us *StaticUserSet) GetUser(userhash []byte) (*vmess.User, protocol.Timestamp, bool) {
2015-12-12 15:40:16 -05:00
id, _ := uuid.ParseString("703e9102-eb57-499c-8b59-faf4f371bb21")
return &vmess.User{
ID: vmess.NewID(id),
}, 0, true
2015-11-09 18:05:25 -05:00
}