mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-14 00:07:09 -05:00
623cb24644
* remove xtls * generate pb * Update protoc * Clean up go.mod & go.sum * format code * restore vless flow * fix codacy * do NOT interfere with pb.go files Co-authored-by: loyalsoldier <10487845+Loyalsoldier@users.noreply.github.com>
41 lines
1015 B
Go
41 lines
1015 B
Go
// +build !confonly
|
|
|
|
package vless
|
|
|
|
import (
|
|
"v2ray.com/core/common/protocol"
|
|
"v2ray.com/core/common/uuid"
|
|
)
|
|
|
|
// AsAccount implements protocol.Account.AsAccount().
|
|
func (a *Account) AsAccount() (protocol.Account, error) {
|
|
id, err := uuid.ParseString(a.Id)
|
|
if err != nil {
|
|
return nil, newError("failed to parse ID").Base(err).AtError()
|
|
}
|
|
return &MemoryAccount{
|
|
ID: protocol.NewID(id),
|
|
Flow: a.Flow, // needs parser here?
|
|
Encryption: a.Encryption, // needs parser here?
|
|
}, nil
|
|
}
|
|
|
|
// MemoryAccount is an in-memory form of VLess account.
|
|
type MemoryAccount struct {
|
|
// ID of the account.
|
|
ID *protocol.ID
|
|
// Flow of the account.
|
|
Flow string
|
|
// Encryption of the account. Used for client connections, and only accepts "none" for now.
|
|
Encryption string
|
|
}
|
|
|
|
// Equals implements protocol.Account.Equals().
|
|
func (a *MemoryAccount) Equals(account protocol.Account) bool {
|
|
vlessAccount, ok := account.(*MemoryAccount)
|
|
if !ok {
|
|
return false
|
|
}
|
|
return a.ID.Equals(vlessAccount.ID)
|
|
}
|