1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-29 15:54:17 -04:00
v2fly/proxy/vmess/inbound/config.go

26 lines
367 B
Go
Raw Normal View History

2015-12-07 14:32:38 -05:00
package inbound
import (
2016-08-20 14:55:45 -04:00
"v2ray.com/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
2016-09-17 18:41:21 -04:00
Level uint32
2016-02-25 08:38:41 -05:00
}
type Config struct {
2016-05-07 14:26:29 -04:00
AllowedUsers []*protocol.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
}