EasyTier/easytier/proto/cli.proto

176 lines
3.4 KiB
Protocol Buffer
Raw Normal View History

2023-09-23 09:53:45 +08:00
syntax = "proto3";
package cli;
message Status {
int32 code = 1;
string message = 2;
}
message PeerConnStats {
uint64 rx_bytes = 1;
uint64 tx_bytes = 2;
uint64 rx_packets = 3;
uint64 tx_packets = 4;
uint64 latency_us = 5;
}
message TunnelInfo {
string tunnel_type = 1;
string local_addr = 2;
string remote_addr = 3;
}
message PeerConnInfo {
string conn_id = 1;
2024-03-13 00:15:22 +08:00
uint32 my_peer_id = 2;
uint32 peer_id = 3;
2023-09-23 09:53:45 +08:00
repeated string features = 4;
TunnelInfo tunnel = 5;
PeerConnStats stats = 6;
float loss_rate = 7;
2023-09-23 09:53:45 +08:00
}
message PeerInfo {
2024-03-13 00:15:22 +08:00
uint32 peer_id = 1;
2023-09-23 09:53:45 +08:00
repeated PeerConnInfo conns = 2;
}
message ListPeerRequest {}
message ListPeerResponse {
repeated PeerInfo peer_infos = 1;
}
enum NatType {
// has NAT; but own a single public IP, port is not changed
Unknown = 0;
OpenInternet = 1;
NoPAT = 2;
FullCone = 3;
Restricted = 4;
PortRestricted = 5;
Symmetric = 6;
SymUdpFirewall = 7;
}
message StunInfo {
NatType udp_nat_type = 1;
NatType tcp_nat_type = 2;
int64 last_update_time = 3;
repeated string public_ip = 4;
uint32 min_port = 5;
uint32 max_port = 6;
2023-09-23 09:53:45 +08:00
}
message Route {
2024-03-13 00:15:22 +08:00
uint32 peer_id = 1;
2023-09-23 09:53:45 +08:00
string ipv4_addr = 2;
2024-03-13 00:15:22 +08:00
uint32 next_hop_peer_id = 3;
2023-09-23 09:53:45 +08:00
int32 cost = 4;
repeated string proxy_cidrs = 5;
string hostname = 6;
StunInfo stun_info = 7;
2024-03-18 17:16:33 +08:00
string inst_id = 8;
2023-09-23 09:53:45 +08:00
}
message ListRouteRequest {}
message ListRouteResponse {
repeated Route routes = 1;
}
service PeerManageRpc {
rpc ListPeer (ListPeerRequest) returns (ListPeerResponse);
rpc ListRoute (ListRouteRequest) returns (ListRouteResponse);
}
enum ConnectorStatus {
CONNECTED = 0;
DISCONNECTED = 1;
CONNECTING = 2;
}
message Connector {
string url = 1;
ConnectorStatus status = 2;
}
message ListConnectorRequest {}
message ListConnectorResponse {
repeated Connector connectors = 1;
}
enum ConnectorManageAction {
ADD = 0;
REMOVE = 1;
}
message ManageConnectorRequest {
ConnectorManageAction action = 1;
string url = 2;
}
message ManageConnectorResponse { }
service ConnectorManageRpc {
rpc ListConnector (ListConnectorRequest) returns (ListConnectorResponse);
rpc ManageConnector (ManageConnectorRequest) returns (ManageConnectorResponse);
}
message DirectConnectedPeerInfo {
2024-05-12 21:45:48 +08:00
int32 latency_ms = 1;
}
message PeerInfoForGlobalMap {
2024-03-13 00:15:22 +08:00
map<uint32, DirectConnectedPeerInfo> direct_peers = 1;
}
message GetGlobalPeerMapRequest {}
message GetGlobalPeerMapResponse {
2024-03-13 00:15:22 +08:00
map<uint32, PeerInfoForGlobalMap> global_peer_map = 1;
}
service PeerCenterRpc {
rpc GetGlobalPeerMap (GetGlobalPeerMapRequest) returns (GetGlobalPeerMapResponse);
}
message VpnPortalInfo {
string vpn_type = 1;
string client_config = 2;
repeated string connected_clients = 3;
}
message GetVpnPortalInfoRequest {}
message GetVpnPortalInfoResponse {
VpnPortalInfo vpn_portal_info = 1;
}
service VpnPortalRpc {
rpc GetVpnPortalInfo (GetVpnPortalInfoRequest) returns (GetVpnPortalInfoResponse);
}
message HandshakeRequest {
uint32 magic = 1;
uint32 my_peer_id = 2;
uint32 version = 3;
repeated string features = 4;
string network_name = 5;
2024-04-27 13:44:59 +08:00
bytes network_secret_digrest = 6;
}
message TaRpcPacket {
uint32 from_peer = 1;
uint32 to_peer = 2;
uint32 service_id = 3;
uint32 transact_id = 4;
bool is_req = 5;
bytes content = 6;
uint32 total_pieces = 7;
uint32 piece_idx = 8;
}