mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-05-08 14:13:22 +00:00
https://github.com/XTLS/Xray-core/pull/6083#issuecomment-4387702965 https://github.com/XTLS/Xray-core/pull/6084#issuecomment-4395333530
21 lines
609 B
Protocol Buffer
21 lines
609 B
Protocol Buffer
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 {
|
|
// List of networks that the Dokodemo accepts.
|
|
repeated xray.common.net.Network allowed_networks = 7;
|
|
xray.common.net.IPOrDomain rewrite_address = 1;
|
|
uint32 rewrite_port = 2;
|
|
map<string, string> port_map = 3;
|
|
bool follow_redirect = 5;
|
|
uint32 user_level = 6;
|
|
}
|