1
0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-03-05 16:54:57 +03:00

16 lines
346 B
Protocol Buffer
Raw Normal View History

2020-11-25 19:01:53 +08:00
syntax = "proto3";
package xray.app.stats;
option csharp_namespace = "Xray.App.Stats";
2020-12-04 09:36:16 +08:00
option go_package = "github.com/xtls/xray-core/app/stats";
2020-11-25 19:01:53 +08:00
option java_package = "com.xray.app.stats";
option java_multiple_files = true;
message Config {}
message ChannelConfig {
bool Blocking = 1;
int32 SubscriberLimit = 2;
int32 BufferSize = 3;
}