1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-12 06:54:23 -04:00
v2fly/transport/internet/headers/srtp/srtp.go

39 lines
679 B
Go
Raw Normal View History

2016-12-08 10:27:41 -05:00
package srtp
import (
2017-01-12 16:47:10 -05:00
"context"
2018-11-02 13:20:02 -04:00
"encoding/binary"
2016-12-08 10:27:41 -05:00
2017-01-12 16:47:10 -05:00
"v2ray.com/core/common"
2017-02-14 16:29:44 -05:00
"v2ray.com/core/common/dice"
2016-12-08 10:27:41 -05:00
)
type SRTP struct {
header uint16
number uint16
}
2018-04-02 14:00:50 -04:00
func (*SRTP) Size() int32 {
2016-12-08 10:27:41 -05:00
return 4
}
2017-04-21 09:36:05 -04:00
// Write implements io.Writer.
2017-04-13 16:17:58 -04:00
func (s *SRTP) Write(b []byte) (int, error) {
s.number++
2018-11-02 13:20:02 -04:00
binary.BigEndian.PutUint16(b, s.number)
binary.BigEndian.PutUint16(b[2:], s.number)
2016-12-09 06:08:25 -05:00
return 4, nil
2016-12-08 10:27:41 -05:00
}
2017-12-16 17:31:05 -05:00
// New returns a new SRTP instance based on the given config.
func New(ctx context.Context, config interface{}) (interface{}, error) {
2016-12-08 10:27:41 -05:00
return &SRTP{
header: 0xB5E8,
2017-04-27 05:54:15 -04:00
number: dice.RollUint16(),
2017-01-12 16:47:10 -05:00
}, nil
2016-12-08 10:27:41 -05:00
}
func init() {
2017-12-16 17:31:05 -05:00
common.Must(common.RegisterConfig((*Config)(nil), New))
2016-12-08 10:27:41 -05:00
}