mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
629 B
39 lines
629 B
package utp
|
|
|
|
import (
|
|
"context"
|
|
"math/rand"
|
|
|
|
"v2ray.com/core/common"
|
|
"v2ray.com/core/common/serial"
|
|
)
|
|
|
|
type UTP struct {
|
|
header byte
|
|
extension byte
|
|
connectionId uint16
|
|
}
|
|
|
|
func (v *UTP) Size() int {
|
|
return 4
|
|
}
|
|
|
|
func (v *UTP) Write(b []byte) (int, error) {
|
|
serial.Uint16ToBytes(v.connectionId, b[:0])
|
|
b[2] = v.header
|
|
b[3] = v.extension
|
|
return 4, nil
|
|
}
|
|
|
|
func NewUTP(ctx context.Context, config interface{}) (interface{}, error) {
|
|
return &UTP{
|
|
header: 1,
|
|
extension: 0,
|
|
connectionId: uint16(rand.Intn(65536)),
|
|
}, nil
|
|
}
|
|
|
|
func init() {
|
|
common.Must(common.RegisterConfig((*Config)(nil), NewUTP))
|
|
}
|