27 lines
340 B
Protocol Buffer
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
|
|
{
|
|
|
|
}
|