mirror of https://github.com/XTLS/Xray-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.
21 lines
551 B
21 lines
551 B
syntax = "proto3"; |
|
|
|
package xray.proxy.dokodemo; |
|
option csharp_namespace = "Xray.Proxy.Dokodemo"; |
|
option go_package = "github.com/xtls/xray-core/proxy/dokodemo"; |
|
option java_package = "com.xray.proxy.dokodemo"; |
|
option java_multiple_files = true; |
|
|
|
import "common/net/address.proto"; |
|
import "common/net/network.proto"; |
|
|
|
message Config { |
|
xray.common.net.IPOrDomain address = 1; |
|
uint32 port = 2; |
|
|
|
// List of networks that the Dokodemo accepts. |
|
repeated xray.common.net.Network networks = 7; |
|
|
|
bool follow_redirect = 5; |
|
uint32 user_level = 6; |
|
}
|
|
|