1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-13 23:48:45 -04:00
v2fly/proxy/vmess/inbound/config.go

26 lines
392 B
Go
Raw Normal View History

2015-12-07 14:32:38 -05:00
package inbound
import (
proto "github.com/v2ray/v2ray-core/common/protocol"
2015-12-07 14:32:38 -05:00
)
2016-01-18 19:21:07 -05:00
type DetourConfig struct {
ToTag string
}
type FeaturesConfig struct {
Detour *DetourConfig
}
2016-02-25 08:38:41 -05:00
type DefaultConfig struct {
AlterIDs uint16
Level proto.UserLevel
}
type Config struct {
AllowedUsers []*proto.User
2016-01-18 19:21:07 -05:00
Features *FeaturesConfig
2016-02-25 08:38:41 -05:00
Defaults *DefaultConfig
2016-04-24 16:40:43 -04:00
DetourConfig *DetourConfig
2015-12-07 14:32:38 -05:00
}