mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-09 11:51:02 -05:00
37 lines
666 B
Go
37 lines
666 B
Go
package wechat
|
|
|
|
import (
|
|
"context"
|
|
|
|
"v2ray.com/core/common"
|
|
"v2ray.com/core/common/dice"
|
|
"v2ray.com/core/common/serial"
|
|
)
|
|
|
|
type VideoChat struct {
|
|
sn int
|
|
}
|
|
|
|
func (vc *VideoChat) Size() int {
|
|
return 13
|
|
}
|
|
|
|
// Write implements io.Writer.
|
|
func (vc *VideoChat) Write(b []byte) (int, error) {
|
|
vc.sn++
|
|
b = append(b[:0], 0xa1, 0x08)
|
|
b = serial.IntToBytes(vc.sn, b)
|
|
b = append(b, 0x10, 0x11, 0x18, 0x30, 0x22, 0x30)
|
|
return 13, nil
|
|
}
|
|
|
|
func NewVideoChat(ctx context.Context, config interface{}) (interface{}, error) {
|
|
return &VideoChat{
|
|
sn: int(dice.RollUint16()),
|
|
}, nil
|
|
}
|
|
|
|
func init() {
|
|
common.Must(common.RegisterConfig((*VideoConfig)(nil), NewVideoChat))
|
|
}
|