f5/im/im_proto.proto
aozhiwei 9f7943ca94 1
2020-09-01 23:27:05 +08:00

27 lines
340 B
Protocol Buffer

package im;
//常量
enum Constant_e
{
MaxIMMsgId = 7;
}
message MFTuple
{
repeated string values = 1;
}
message IMSocketConnect
{
optional bool is_websocket = 1;
optional string host = 2;
optional string url = 3;
optional string query_str = 4;
repeated MFTuple tuples = 5;
}
message IMSocketDisconnect
{
}