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