21 lines
254 B
Protocol Buffer
21 lines
254 B
Protocol Buffer
package im;
|
|
|
|
//常量
|
|
enum Constant_e
|
|
{
|
|
MaxIMMsgId = 7;
|
|
}
|
|
|
|
message IMSocketConnect
|
|
{
|
|
optional bool is_websocket = 1;
|
|
optional string host = 2;
|
|
optional string url = 3;
|
|
optional string query_str = 4;
|
|
}
|
|
|
|
message IMSocketDisconnect
|
|
{
|
|
|
|
}
|