2022-05-19 修复改用wss协议后无法使用的问题

This commit is contained in:
FedoraLinux
2022-05-19 19:12:03 +08:00
parent b120257d64
commit 99549c52fc
27 changed files with 75 additions and 8 deletions

14
protobuf/wss.proto Normal file
View File

@ -0,0 +1,14 @@
syntax = "proto3";
message WssResponse{
int64 wss_push_room_id = 1;
int64 wss_push_did = 2;
int64 wss_push_log_id = 3;
int64 wss_fetch_ms = 4;
int64 wss_push_ms = 5;
string wss_msg_type = 6;
string pb = 7;
bytes data = 8;
int64 server_time = 9;
string compress_type = 10;
}