2017-10-31 03:51:33 -04:00
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
|
|
// source: config.proto
|
|
|
|
|
|
|
|
/*
|
2017-10-31 03:52:40 -04:00
|
|
|
Package domainsocket is a generated protocol buffer package.
|
2017-10-31 03:51:33 -04:00
|
|
|
|
|
|
|
It is generated from these files:
|
|
|
|
config.proto
|
|
|
|
|
|
|
|
It has these top-level messages:
|
|
|
|
DomainSocketSecurity
|
|
|
|
DomainSocketSettings
|
|
|
|
*/
|
2017-10-31 03:52:40 -04:00
|
|
|
package domainsocket
|
2017-10-31 03:51:33 -04:00
|
|
|
|
|
|
|
import proto "github.com/golang/protobuf/proto"
|
|
|
|
import fmt "fmt"
|
|
|
|
import math "math"
|
|
|
|
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
var _ = proto.Marshal
|
|
|
|
var _ = fmt.Errorf
|
|
|
|
var _ = math.Inf
|
|
|
|
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
|
|
// is compatible with the proto package it is being compiled against.
|
|
|
|
// A compilation error at this line likely means your copy of the
|
|
|
|
// proto package needs to be updated.
|
|
|
|
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
|
|
|
|
// Flag Array
|
|
|
|
type DomainSocketSecurityMode int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
DomainSocketSecurityMode_Danger DomainSocketSecurityMode = 0
|
|
|
|
// Verfify is Dialer have a pid or ppid match pid file
|
|
|
|
DomainSocketSecurityMode_VerifyPid DomainSocketSecurityMode = 1
|
|
|
|
// Do not tolerance ppid match
|
|
|
|
DomainSocketSecurityMode_DisqualifyPPIDMatch DomainSocketSecurityMode = 2
|
|
|
|
// Enforce Uid Verify On euid
|
|
|
|
DomainSocketSecurityMode_VerifyEUID DomainSocketSecurityMode = 4
|
|
|
|
// Enforce Uid Verify On ruid
|
|
|
|
DomainSocketSecurityMode_VerifyRUID DomainSocketSecurityMode = 8
|
|
|
|
// Does not allow same user exception
|
|
|
|
DomainSocketSecurityMode_DisqualifySameUser DomainSocketSecurityMode = 16
|
|
|
|
// Does not allow root user exception
|
|
|
|
DomainSocketSecurityMode_DisqualifyRootUser DomainSocketSecurityMode = 32
|
|
|
|
)
|
|
|
|
|
|
|
|
var DomainSocketSecurityMode_name = map[int32]string{
|
|
|
|
0: "Danger",
|
|
|
|
1: "VerifyPid",
|
|
|
|
2: "DisqualifyPPIDMatch",
|
|
|
|
4: "VerifyEUID",
|
|
|
|
8: "VerifyRUID",
|
|
|
|
16: "DisqualifySameUser",
|
|
|
|
32: "DisqualifyRootUser",
|
|
|
|
}
|
|
|
|
var DomainSocketSecurityMode_value = map[string]int32{
|
|
|
|
"Danger": 0,
|
|
|
|
"VerifyPid": 1,
|
|
|
|
"DisqualifyPPIDMatch": 2,
|
|
|
|
"VerifyEUID": 4,
|
|
|
|
"VerifyRUID": 8,
|
|
|
|
"DisqualifySameUser": 16,
|
|
|
|
"DisqualifyRootUser": 32,
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x DomainSocketSecurityMode) String() string {
|
|
|
|
return proto.EnumName(DomainSocketSecurityMode_name, int32(x))
|
|
|
|
}
|
|
|
|
func (DomainSocketSecurityMode) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
|
|
|
|
type DomainSocketSecurity struct {
|
|
|
|
// Flag Array Type, User can set an integer to define various configure
|
|
|
|
Mode DomainSocketSecurityMode `protobuf:"varint,1,opt,name=Mode,enum=v2ray.core.internet.domainsocket.DomainSocketSecurityMode" json:"Mode,omitempty"`
|
|
|
|
// Set pid files to be allowed
|
|
|
|
AllowedPid []string `protobuf:"bytes,2,rep,name=AllowedPid" json:"AllowedPid,omitempty"`
|
|
|
|
// Set uids to be allowed, either euid or ruid should match one of following
|
|
|
|
// uids AllowedUid, or user that v2ray is running or root.
|
|
|
|
AllowedUid []uint64 `protobuf:"varint,3,rep,packed,name=AllowedUid" json:"AllowedUid,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *DomainSocketSecurity) Reset() { *m = DomainSocketSecurity{} }
|
|
|
|
func (m *DomainSocketSecurity) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*DomainSocketSecurity) ProtoMessage() {}
|
|
|
|
func (*DomainSocketSecurity) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
|
|
|
|
func (m *DomainSocketSecurity) GetMode() DomainSocketSecurityMode {
|
|
|
|
if m != nil {
|
|
|
|
return m.Mode
|
|
|
|
}
|
|
|
|
return DomainSocketSecurityMode_Danger
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *DomainSocketSecurity) GetAllowedPid() []string {
|
|
|
|
if m != nil {
|
|
|
|
return m.AllowedPid
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *DomainSocketSecurity) GetAllowedUid() []uint64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.AllowedUid
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type DomainSocketSettings struct {
|
|
|
|
// Path we should listen/dial
|
|
|
|
Path string `protobuf:"bytes,1,opt,name=Path" json:"Path,omitempty"`
|
|
|
|
Security *DomainSocketSecurity `protobuf:"bytes,2,opt,name=Security" json:"Security,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *DomainSocketSettings) Reset() { *m = DomainSocketSettings{} }
|
|
|
|
func (m *DomainSocketSettings) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*DomainSocketSettings) ProtoMessage() {}
|
|
|
|
func (*DomainSocketSettings) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
|
|
|
|
|
|
|
func (m *DomainSocketSettings) GetPath() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Path
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *DomainSocketSettings) GetSecurity() *DomainSocketSecurity {
|
|
|
|
if m != nil {
|
|
|
|
return m.Security
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
proto.RegisterType((*DomainSocketSecurity)(nil), "v2ray.core.internet.domainsocket.DomainSocketSecurity")
|
|
|
|
proto.RegisterType((*DomainSocketSettings)(nil), "v2ray.core.internet.domainsocket.DomainSocketSettings")
|
|
|
|
proto.RegisterEnum("v2ray.core.internet.domainsocket.DomainSocketSecurityMode", DomainSocketSecurityMode_name, DomainSocketSecurityMode_value)
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() { proto.RegisterFile("config.proto", fileDescriptor0) }
|
|
|
|
|
|
|
|
var fileDescriptor0 = []byte{
|
2017-10-31 03:52:40 -04:00
|
|
|
// 302 bytes of a gzipped FileDescriptorProto
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x92, 0xb1, 0x4b, 0x3b, 0x31,
|
|
|
|
0x14, 0xc7, 0x7f, 0x69, 0x8f, 0xd2, 0xbe, 0x5f, 0x2d, 0xe1, 0x29, 0x7a, 0x93, 0x84, 0x4e, 0x87,
|
|
|
|
0x43, 0x86, 0x0a, 0x0e, 0x6e, 0xca, 0x39, 0x74, 0xa8, 0x1c, 0x29, 0x75, 0x70, 0x8b, 0x97, 0xb4,
|
|
|
|
0x0d, 0xb6, 0x89, 0xe6, 0x52, 0xa5, 0x8b, 0x7f, 0x8a, 0xa3, 0x7f, 0xa7, 0x34, 0xa2, 0x3d, 0x45,
|
|
|
|
0x11, 0xdc, 0xf2, 0x3e, 0x49, 0x3e, 0x7c, 0xbf, 0xf0, 0xa0, 0x5b, 0x3a, 0x3b, 0x35, 0x33, 0x7e,
|
|
|
|
0xe7, 0x5d, 0x70, 0xc8, 0x1e, 0x06, 0x5e, 0xae, 0x79, 0xe9, 0xbc, 0xe6, 0xc6, 0x06, 0xed, 0xad,
|
|
|
|
0x0e, 0x5c, 0xb9, 0xa5, 0x34, 0xb6, 0x72, 0xe5, 0xad, 0x0e, 0xfd, 0x17, 0x02, 0x7b, 0x79, 0x04,
|
|
|
|
0xe3, 0x08, 0xc6, 0xba, 0x5c, 0x79, 0x13, 0xd6, 0x78, 0x09, 0xc9, 0xc8, 0x29, 0x9d, 0x12, 0x46,
|
|
|
|
0xb2, 0xde, 0xe0, 0x94, 0xff, 0x66, 0xe2, 0xdf, 0x59, 0x36, 0x06, 0x11, 0x3d, 0x78, 0x08, 0x70,
|
|
|
|
0xb6, 0x58, 0xb8, 0x47, 0xad, 0x0a, 0xa3, 0xd2, 0x06, 0x6b, 0x66, 0x1d, 0x51, 0x23, 0xb5, 0xfb,
|
|
|
|
0x89, 0x51, 0x69, 0x93, 0x35, 0xb3, 0x44, 0xd4, 0x48, 0xff, 0xe9, 0x6b, 0xce, 0x10, 0x8c, 0x9d,
|
|
|
|
0x55, 0x88, 0x90, 0x14, 0x32, 0xcc, 0x63, 0xce, 0x8e, 0x88, 0x67, 0x14, 0xd0, 0x7e, 0x4f, 0x90,
|
|
|
|
0x36, 0x18, 0xc9, 0xfe, 0x0f, 0x4e, 0xfe, 0x96, 0x5f, 0x7c, 0x78, 0x8e, 0x9e, 0x09, 0xa4, 0x3f,
|
|
|
|
0x55, 0x44, 0x80, 0x56, 0x2e, 0xed, 0x4c, 0x7b, 0xfa, 0x0f, 0x77, 0xa0, 0x73, 0xa5, 0xbd, 0x99,
|
|
|
|
0xae, 0x0b, 0xa3, 0x28, 0xc1, 0x03, 0xd8, 0xcd, 0x4d, 0x75, 0xbf, 0x92, 0x8b, 0x0d, 0x2a, 0x86,
|
|
|
|
0xf9, 0x48, 0x86, 0x72, 0x4e, 0x1b, 0xd8, 0x03, 0x78, 0x7b, 0x77, 0x31, 0x19, 0xe6, 0x34, 0xd9,
|
|
|
|
0xce, 0x62, 0x33, 0xb7, 0x71, 0x1f, 0x70, 0xfb, 0x71, 0x2c, 0x97, 0x7a, 0x52, 0x69, 0x4f, 0xe9,
|
|
|
|
0x67, 0x2e, 0x9c, 0x0b, 0x91, 0xb3, 0xf3, 0xde, 0x75, 0xb7, 0xde, 0xe7, 0xa6, 0x15, 0x57, 0xe0,
|
|
|
|
0xf8, 0x35, 0x00, 0x00, 0xff, 0xff, 0x53, 0x18, 0xa4, 0xc9, 0x12, 0x02, 0x00, 0x00,
|
2017-10-31 03:51:33 -04:00
|
|
|
}
|