2015-12-07 19:32:38 +00:00
|
|
|
package inbound
|
|
|
|
|
|
|
|
import (
|
2016-02-03 10:58:42 +00:00
|
|
|
proto "github.com/v2ray/v2ray-core/common/protocol"
|
2015-12-07 19:32:38 +00:00
|
|
|
)
|
|
|
|
|
2016-01-19 00:21:07 +00:00
|
|
|
type DetourConfig struct {
|
|
|
|
ToTag string
|
|
|
|
}
|
|
|
|
|
|
|
|
type FeaturesConfig struct {
|
|
|
|
Detour *DetourConfig
|
|
|
|
}
|
|
|
|
|
2016-01-15 11:43:06 +00:00
|
|
|
type Config struct {
|
2016-02-03 10:58:42 +00:00
|
|
|
AllowedUsers []*proto.User
|
2016-01-19 00:21:07 +00:00
|
|
|
Features *FeaturesConfig
|
2015-12-07 19:32:38 +00:00
|
|
|
}
|