1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-30 00:04:21 -04:00
v2fly/transport/internet/headers/srtp/srtp.go
Darien Raymond f57260c358
refactor
2017-04-13 22:17:58 +02:00

37 lines
599 B
Go

package srtp
import (
"context"
"v2ray.com/core/common"
"v2ray.com/core/common/dice"
"v2ray.com/core/common/serial"
)
type SRTP struct {
header uint16
number uint16
}
func (*SRTP) Size() int {
return 4
}
func (s *SRTP) Write(b []byte) (int, error) {
s.number++
serial.Uint16ToBytes(s.number, b[:0])
serial.Uint16ToBytes(s.number, b[:2])
return 4, nil
}
func NewSRTP(ctx context.Context, config interface{}) (interface{}, error) {
return &SRTP{
header: 0xB5E8,
number: dice.RandomUint16(),
}, nil
}
func init() {
common.Must(common.RegisterConfig((*Config)(nil), NewSRTP))
}