28 lines
584 B
Go
28 lines
584 B
Go
package payload
|
|
|
|
import (
|
|
"go.mau.fi/mautrix-gmessages/libgm/binary"
|
|
"go.mau.fi/mautrix-gmessages/libgm/util"
|
|
)
|
|
|
|
func RefreshPhoneRelay(rpcKey []byte) ([]byte, *binary.Container, error) {
|
|
payload := &binary.Container{
|
|
PhoneRelay: &binary.PhoneRelayBody{
|
|
ID: util.RandomUUIDv4(),
|
|
Bugle: "Bugle",
|
|
RpcKey: rpcKey,
|
|
Date: &binary.Date{
|
|
Year: 2023,
|
|
Seq1: 6,
|
|
Seq2: 22,
|
|
Seq3: 4,
|
|
Seq4: 6,
|
|
},
|
|
},
|
|
}
|
|
encodedPayload, err2 := binary.EncodeProtoMessage(payload)
|
|
if err2 != nil {
|
|
return nil, payload, err2
|
|
}
|
|
return encodedPayload, payload, nil
|
|
}
|