mirror of
https://github.com/v2fly/v2ray-core.git
synced 2026-04-18 03:29:12 -04:00
accounts in protobuf
This commit is contained in:
13
common/protocol/server_spec.proto
Normal file
13
common/protocol/server_spec.proto
Normal file
@@ -0,0 +1,13 @@
|
||||
syntax = "proto3";
|
||||
|
||||
import "v2ray.com/core/common/net/address.proto";
|
||||
import "v2ray.com/core/common/protocol/user.proto";
|
||||
|
||||
package com.v2ray.core.common.protocol;
|
||||
option go_package = "protocol";
|
||||
|
||||
message ServerSpecPB {
|
||||
com.v2ray.core.common.net.AddressPB address = 1;
|
||||
uint32 port = 2;
|
||||
repeated com.v2ray.core.common.protocol.User users = 3;
|
||||
}
|
||||
Reference in New Issue
Block a user