1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 18:25:23 +00:00
v2fly/app/policy/config.proto

52 lines
1.0 KiB
Protocol Buffer
Raw Normal View History

2017-11-27 21:09:30 +00:00
syntax = "proto3";
package v2ray.core.app.policy;
option csharp_namespace = "V2Ray.Core.App.Policy";
2021-02-16 20:31:50 +00:00
option go_package = "github.com/v2fly/v2ray-core/v4/app/policy";
2017-11-27 21:09:30 +00:00
option java_package = "com.v2ray.core.app.policy";
option java_multiple_files = true;
message Second {
uint32 value = 1;
}
message Policy {
// Timeout is a message for timeout settings in various stages, in seconds.
message Timeout {
Second handshake = 1;
Second connection_idle = 2;
Second uplink_only = 3;
Second downlink_only = 4;
}
2018-03-30 21:39:54 +00:00
message Stats {
2018-03-31 18:30:49 +00:00
bool user_uplink = 1;
bool user_downlink = 2;
2018-03-30 21:39:54 +00:00
}
2018-05-25 10:08:28 +00:00
message Buffer {
2018-05-25 11:12:00 +00:00
// Buffer size per connection, in bytes. -1 for unlimited buffer.
int32 connection = 1;
2018-05-25 10:08:28 +00:00
}
2017-11-27 21:09:30 +00:00
Timeout timeout = 1;
2018-03-30 21:39:54 +00:00
Stats stats = 2;
2018-05-25 10:08:28 +00:00
Buffer buffer = 3;
2017-11-27 21:09:30 +00:00
}
2018-04-11 22:10:14 +00:00
message SystemPolicy {
message Stats {
bool inbound_uplink = 1;
bool inbound_downlink = 2;
2020-06-23 03:55:00 +00:00
bool outbound_uplink = 3;
bool outbound_downlink = 4;
2018-04-11 22:10:14 +00:00
}
Stats stats = 1;
}
2017-11-27 21:09:30 +00:00
message Config {
map<uint32, Policy> level = 1;
2018-04-11 22:10:14 +00:00
SystemPolicy system = 2;
2017-11-27 21:09:30 +00:00
}