mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 22:53:03 +00:00
85a1c33709
* Add GetInboundUser in proto * Add get user logic for all existing inbounds * Add inbounduser command * Add option to get all users * Fix shadowsocks2022 config * Fix init users in shadowsocks2022 * Fix copy * Add inbound user count command This api costs much less than get inbound user, could be useful in some case * Update from latest main
91 lines
2.0 KiB
Protocol Buffer
91 lines
2.0 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
package xray.app.proxyman.command;
|
|
option csharp_namespace = "Xray.App.Proxyman.Command";
|
|
option go_package = "github.com/xtls/xray-core/app/proxyman/command";
|
|
option java_package = "com.xray.app.proxyman.command";
|
|
option java_multiple_files = true;
|
|
|
|
import "common/protocol/user.proto";
|
|
import "common/serial/typed_message.proto";
|
|
import "core/config.proto";
|
|
|
|
message AddUserOperation {
|
|
xray.common.protocol.User user = 1;
|
|
}
|
|
|
|
message RemoveUserOperation {
|
|
string email = 1;
|
|
}
|
|
|
|
message AddInboundRequest {
|
|
core.InboundHandlerConfig inbound = 1;
|
|
}
|
|
|
|
message AddInboundResponse {}
|
|
|
|
message RemoveInboundRequest {
|
|
string tag = 1;
|
|
}
|
|
|
|
message RemoveInboundResponse {}
|
|
|
|
message AlterInboundRequest {
|
|
string tag = 1;
|
|
xray.common.serial.TypedMessage operation = 2;
|
|
}
|
|
|
|
message AlterInboundResponse {}
|
|
|
|
message GetInboundUserRequest {
|
|
string tag = 1;
|
|
string email = 2;
|
|
}
|
|
|
|
message GetInboundUserResponse {
|
|
repeated xray.common.protocol.User users = 1;
|
|
}
|
|
|
|
message GetInboundUsersCountResponse {
|
|
int64 count = 1;
|
|
}
|
|
|
|
message AddOutboundRequest {
|
|
core.OutboundHandlerConfig outbound = 1;
|
|
}
|
|
|
|
message AddOutboundResponse {}
|
|
|
|
message RemoveOutboundRequest {
|
|
string tag = 1;
|
|
}
|
|
|
|
message RemoveOutboundResponse {}
|
|
|
|
message AlterOutboundRequest {
|
|
string tag = 1;
|
|
xray.common.serial.TypedMessage operation = 2;
|
|
}
|
|
|
|
message AlterOutboundResponse {}
|
|
|
|
service HandlerService {
|
|
rpc AddInbound(AddInboundRequest) returns (AddInboundResponse) {}
|
|
|
|
rpc RemoveInbound(RemoveInboundRequest) returns (RemoveInboundResponse) {}
|
|
|
|
rpc AlterInbound(AlterInboundRequest) returns (AlterInboundResponse) {}
|
|
|
|
rpc GetInboundUsers(GetInboundUserRequest) returns (GetInboundUserResponse) {}
|
|
|
|
rpc GetInboundUsersCount(GetInboundUserRequest) returns (GetInboundUsersCountResponse) {}
|
|
|
|
rpc AddOutbound(AddOutboundRequest) returns (AddOutboundResponse) {}
|
|
|
|
rpc RemoveOutbound(RemoveOutboundRequest) returns (RemoveOutboundResponse) {}
|
|
|
|
rpc AlterOutbound(AlterOutboundRequest) returns (AlterOutboundResponse) {}
|
|
}
|
|
|
|
message Config {}
|