mirror of
https://github.com/Mrs4s/MiraiGo.git
synced 2025-05-04 11:07:40 +08:00
46 lines
1.1 KiB
Go
46 lines
1.1 KiB
Go
package client
|
|
|
|
import (
|
|
"github.com/Mrs4s/MiraiGo/client/internal/codec"
|
|
"github.com/Mrs4s/MiraiGo/client/internal/network"
|
|
)
|
|
|
|
//go:noinline
|
|
func (c *QQClient) buildOicqRequestPacket(uin int64, command uint16, body []byte) []byte {
|
|
req := codec.OICQ{
|
|
Uin: uint32(uin),
|
|
Command: command,
|
|
EncryptMethod: c.ecdh,
|
|
Key: c.RandomKey,
|
|
Body: body,
|
|
}
|
|
return req.Encode()
|
|
}
|
|
|
|
//go:noinline
|
|
func (c *QQClient) uniPacket(command string, body []byte) (uint16, []byte) {
|
|
seq := c.nextSeq()
|
|
req := network.Request{
|
|
Type: network.RequestTypeSimple,
|
|
EncryptType: network.EncryptTypeD2Key,
|
|
Uin: c.Uin,
|
|
SequenceID: int32(seq),
|
|
CommandName: command,
|
|
Body: body,
|
|
}
|
|
return seq, c.transport.PackPacket(&req)
|
|
}
|
|
|
|
//go:noinline
|
|
func (c *QQClient) uniPacketWithSeq(seq uint16, command string, body []byte) []byte {
|
|
req := network.Request{
|
|
Type: network.RequestTypeSimple,
|
|
EncryptType: network.EncryptTypeD2Key,
|
|
Uin: c.Uin,
|
|
SequenceID: int32(seq),
|
|
CommandName: command,
|
|
Body: body,
|
|
}
|
|
return c.transport.PackPacket(&req)
|
|
}
|