mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
712 B
29 lines
712 B
package core
|
|
|
|
// VUser is the user account that is used for connection to a VPoint
|
|
type VUser struct {
|
|
Id VID // The ID of this VUser.
|
|
}
|
|
|
|
// VNext is the next VPoint server in the connection chain.
|
|
type VNext struct {
|
|
ServerAddress string // Address of VNext server, in the form of "IP:Port"
|
|
User []VUser // User accounts for accessing VNext.
|
|
}
|
|
|
|
// VConfig is the config for VPoint server.
|
|
type VConfig struct {
|
|
Port uint16 // Port of this VPoint server.
|
|
AllowedClients []VUser
|
|
ClientProtocol string
|
|
VNextList []VNext
|
|
}
|
|
|
|
type VConfigMarshaller interface {
|
|
Marshal(config VConfig) ([]byte, error)
|
|
}
|
|
|
|
type VConfigUnmarshaller interface {
|
|
Unmarshal(data []byte) (VConfig, error)
|
|
}
|