mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-18 10:26:01 -05:00
26 lines
575 B
Go
26 lines
575 B
Go
package json
|
|
|
|
import (
|
|
"github.com/v2ray/v2ray-core/proxy/common/config/json"
|
|
"github.com/v2ray/v2ray-core/proxy/vmess"
|
|
vmessjson "github.com/v2ray/v2ray-core/proxy/vmess/json"
|
|
)
|
|
|
|
type Inbound struct {
|
|
AllowedClients []*vmessjson.ConfigUser `json:"clients"`
|
|
}
|
|
|
|
func (c *Inbound) AllowedUsers() []vmess.User {
|
|
users := make([]vmess.User, 0, len(c.AllowedClients))
|
|
for _, rawUser := range c.AllowedClients {
|
|
users = append(users, rawUser)
|
|
}
|
|
return users
|
|
}
|
|
|
|
func init() {
|
|
json.RegisterInboundConnectionConfig("vmess", func() interface{} {
|
|
return new(Inbound)
|
|
})
|
|
}
|