| 12345678910111213141516171819202122232425 |
- package inbound
- import (
- "github.com/v2ray/v2ray-core/common/protocol"
- )
- type DetourConfig struct {
- ToTag string
- }
- type FeaturesConfig struct {
- Detour *DetourConfig
- }
- type DefaultConfig struct {
- AlterIDs uint16
- Level protocol.UserLevel
- }
- type Config struct {
- AllowedUsers []*protocol.User
- Features *FeaturesConfig
- Defaults *DefaultConfig
- DetourConfig *DetourConfig
- }
|