21 lines
458 B
Protocol Buffer
Executable File
21 lines
458 B
Protocol Buffer
Executable File
syntax = "proto2";
|
|
import "XiguaCommon.proto";
|
|
|
|
|
|
message XiguaLive {
|
|
message Data {
|
|
message Message {
|
|
required CommonInfo commonInfo = 1;
|
|
optional string content = 3;
|
|
}
|
|
// WebcastChatMessage 聊天
|
|
// WebcastGiftMessage 礼物
|
|
required string method = 1;
|
|
required Message message = 2;
|
|
}
|
|
repeated Data data = 1;
|
|
required string cursor = 2;
|
|
optional int32 fetch_interval = 3;
|
|
optional int32 now = 4;
|
|
required string internal_ext = 5;
|
|
} |