2025-05-29 11:49:24 +08:00
|
|
|
package ipb
|
|
|
|
|
|
|
|
func MakeMsg(serviceName string, connId uint32, userId int64, msgId int32, msg []byte) *InternalMsg {
|
|
|
|
return &InternalMsg{
|
|
|
|
ServiceName: serviceName,
|
|
|
|
ConnId: connId,
|
|
|
|
UserId: userId,
|
|
|
|
MsgId: msgId,
|
|
|
|
Msg: msg,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-06-02 15:29:03 +08:00
|
|
|
//func MakeRpcMsg(serviceName string, connId uint32, userId int64, msgId int32, msg []byte) *InternalMsg {
|
|
|
|
// return &InternalMsg{
|
|
|
|
// ServiceName: serviceName,
|
|
|
|
// ConnId: connId,
|
|
|
|
// UserId: userId,
|
|
|
|
// MsgId: msgId,
|
|
|
|
// Msg: msg,
|
|
|
|
// Type: MsgType_RpcMsg,
|
|
|
|
// RetRpcMsgId: genRpcId(),
|
|
|
|
// }
|
|
|
|
//}
|