Documentation ¶
Index ¶
- Variables
- type Config
- func (*Config) Descriptor() ([]byte, []int)deprecated
- func (x *Config) GetDefault() *DefaultConfig
- func (c *Config) GetDefaultValue() *DefaultConfig
- func (x *Config) GetDetour() *DetourConfig
- func (x *Config) GetUser() []*protocol.User
- func (*Config) ProtoMessage()
- func (x *Config) ProtoReflect() protoreflect.Message
- func (x *Config) Reset()
- func (x *Config) String() string
- type DefaultConfig
- type DetourConfig
- type Handler
- func (h *Handler) AddUser(ctx context.Context, user *protocol.MemoryUser) error
- func (h *Handler) Close() error
- func (h *Handler) GetUser(email string) *protocol.MemoryUser
- func (*Handler) Network() []net.Network
- func (h *Handler) Process(ctx context.Context, network net.Network, connection stat.Connection, ...) error
- func (h *Handler) RemoveUser(ctx context.Context, email string) error
Constants ¶
This section is empty.
Variables ¶
View Source
var File_proxy_vmess_inbound_config_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { User []*protocol.User `protobuf:"bytes,1,rep,name=user,proto3" json:"user,omitempty"` Default *DefaultConfig `protobuf:"bytes,2,opt,name=default,proto3" json:"default,omitempty"` Detour *DetourConfig `protobuf:"bytes,3,opt,name=detour,proto3" json:"detour,omitempty"` // 4 is for legacy setting // contains filtered or unexported fields }
func (*Config) Descriptor
deprecated
func (*Config) GetDefault ¶
func (x *Config) GetDefault() *DefaultConfig
func (*Config) GetDefaultValue ¶
func (c *Config) GetDefaultValue() *DefaultConfig
GetDefaultValue returns default settings of DefaultConfig.
func (*Config) GetDetour ¶
func (x *Config) GetDetour() *DetourConfig
func (*Config) ProtoMessage ¶
func (*Config) ProtoMessage()
func (*Config) ProtoReflect ¶
func (x *Config) ProtoReflect() protoreflect.Message
type DefaultConfig ¶
type DefaultConfig struct { Level uint32 `protobuf:"varint,2,opt,name=level,proto3" json:"level,omitempty"` // contains filtered or unexported fields }
func (*DefaultConfig) Descriptor
deprecated
func (*DefaultConfig) Descriptor() ([]byte, []int)
Deprecated: Use DefaultConfig.ProtoReflect.Descriptor instead.
func (*DefaultConfig) GetLevel ¶
func (x *DefaultConfig) GetLevel() uint32
func (*DefaultConfig) ProtoMessage ¶
func (*DefaultConfig) ProtoMessage()
func (*DefaultConfig) ProtoReflect ¶
func (x *DefaultConfig) ProtoReflect() protoreflect.Message
func (*DefaultConfig) Reset ¶
func (x *DefaultConfig) Reset()
func (*DefaultConfig) String ¶
func (x *DefaultConfig) String() string
type DetourConfig ¶
type DetourConfig struct { To string `protobuf:"bytes,1,opt,name=to,proto3" json:"to,omitempty"` // contains filtered or unexported fields }
func (*DetourConfig) Descriptor
deprecated
func (*DetourConfig) Descriptor() ([]byte, []int)
Deprecated: Use DetourConfig.ProtoReflect.Descriptor instead.
func (*DetourConfig) GetTo ¶
func (x *DetourConfig) GetTo() string
func (*DetourConfig) ProtoMessage ¶
func (*DetourConfig) ProtoMessage()
func (*DetourConfig) ProtoReflect ¶
func (x *DetourConfig) ProtoReflect() protoreflect.Message
func (*DetourConfig) Reset ¶
func (x *DetourConfig) Reset()
func (*DetourConfig) String ¶
func (x *DetourConfig) String() string
type Handler ¶
type Handler struct {
// contains filtered or unexported fields
}
Handler is an inbound connection handler that handles messages in VMess protocol.
Click to show internal directories.
Click to hide internal directories.