mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-12-18 13:14:36 +03:00
Some checks are pending
Build docker image / build-image (push) Waiting to run
Build and Release / prepare (push) Waiting to run
Build and Release / build (386, freebsd, , ) (push) Blocked by required conditions
Build and Release / build (386, linux, , ) (push) Blocked by required conditions
Build and Release / build (386, openbsd, , ) (push) Blocked by required conditions
Build and Release / build (386, windows, , ) (push) Blocked by required conditions
Build and Release / build (386, windows, 1.21.4, win7-32) (push) Blocked by required conditions
Build and Release / build (amd64, darwin, , ) (push) Blocked by required conditions
Build and Release / build (amd64, freebsd, , ) (push) Blocked by required conditions
Build and Release / build (amd64, linux, , ) (push) Blocked by required conditions
Build and Release / build (amd64, openbsd, , ) (push) Blocked by required conditions
Build and Release / build (amd64, windows, , ) (push) Blocked by required conditions
Build and Release / build (amd64, windows, 1.21.4, win7-64) (push) Blocked by required conditions
Build and Release / build (arm, 5, linux) (push) Blocked by required conditions
Build and Release / build (arm, 6, linux) (push) Blocked by required conditions
Build and Release / build (arm, 7, freebsd) (push) Blocked by required conditions
Build and Release / build (arm, 7, linux) (push) Blocked by required conditions
Build and Release / build (arm, 7, openbsd) (push) Blocked by required conditions
Build and Release / build (arm, 7, windows) (push) Blocked by required conditions
Build and Release / build (arm64, android) (push) Blocked by required conditions
Build and Release / build (arm64, darwin) (push) Blocked by required conditions
Build and Release / build (arm64, freebsd) (push) Blocked by required conditions
Build and Release / build (arm64, linux) (push) Blocked by required conditions
Build and Release / build (arm64, openbsd) (push) Blocked by required conditions
Build and Release / build (arm64, windows) (push) Blocked by required conditions
Build and Release / build (loong64, linux) (push) Blocked by required conditions
Build and Release / build (mips, linux) (push) Blocked by required conditions
Build and Release / build (mips64, linux) (push) Blocked by required conditions
Build and Release / build (mips64le, linux) (push) Blocked by required conditions
Build and Release / build (mipsle, linux) (push) Blocked by required conditions
Build and Release / build (ppc64, linux) (push) Blocked by required conditions
Build and Release / build (ppc64le, linux) (push) Blocked by required conditions
Build and Release / build (riscv64, linux) (push) Blocked by required conditions
Build and Release / build (s390x, linux) (push) Blocked by required conditions
Test / test (macos-latest) (push) Waiting to run
Test / test (ubuntu-latest) (push) Waiting to run
Test / test (windows-latest) (push) Waiting to run
* add statsUserOnline bool to policy * add OnlineMap struct to stats * apply UserOnline functionality to dispatcher * add statsonline api command * fix comments * Update app/stats/online_map.go Co-authored-by: mmmray <142015632+mmmray@users.noreply.github.com> * improve AddIP * regenerate pb --------- Co-authored-by: mmmray <142015632+mmmray@users.noreply.github.com>
53 lines
1.0 KiB
Protocol Buffer
53 lines
1.0 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
package xray.app.policy;
|
|
option csharp_namespace = "Xray.App.Policy";
|
|
option go_package = "github.com/xtls/xray-core/app/policy";
|
|
option java_package = "com.xray.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;
|
|
}
|
|
|
|
message Stats {
|
|
bool user_uplink = 1;
|
|
bool user_downlink = 2;
|
|
bool user_online = 3;
|
|
}
|
|
|
|
message Buffer {
|
|
// Buffer size per connection, in bytes. -1 for unlimited buffer.
|
|
int32 connection = 1;
|
|
}
|
|
|
|
Timeout timeout = 1;
|
|
Stats stats = 2;
|
|
Buffer buffer = 3;
|
|
}
|
|
|
|
message SystemPolicy {
|
|
message Stats {
|
|
bool inbound_uplink = 1;
|
|
bool inbound_downlink = 2;
|
|
bool outbound_uplink = 3;
|
|
bool outbound_downlink = 4;
|
|
}
|
|
|
|
Stats stats = 1;
|
|
}
|
|
|
|
message Config {
|
|
map<uint32, Policy> level = 1;
|
|
SystemPolicy system = 2;
|
|
}
|