2016-12-08 10:27:41 -05:00
|
|
|
package utp
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math/rand"
|
|
|
|
|
|
|
|
"v2ray.com/core/common/serial"
|
|
|
|
"v2ray.com/core/transport/internet"
|
|
|
|
)
|
|
|
|
|
|
|
|
type UTP struct {
|
|
|
|
header byte
|
|
|
|
extension byte
|
|
|
|
connectionId uint16
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *UTP) Size() int {
|
|
|
|
return 4
|
|
|
|
}
|
|
|
|
|
2016-12-09 06:08:25 -05:00
|
|
|
func (v *UTP) Write(b []byte) (int, error) {
|
2016-12-12 15:58:13 -05:00
|
|
|
serial.Uint16ToBytes(v.connectionId, b[:0])
|
|
|
|
b[2] = v.header
|
|
|
|
b[3] = v.extension
|
2016-12-09 06:08:25 -05:00
|
|
|
return 4, nil
|
2016-12-08 10:27:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type UTPFactory struct{}
|
|
|
|
|
|
|
|
func (v UTPFactory) Create(rawSettings interface{}) internet.PacketHeader {
|
|
|
|
return &UTP{
|
|
|
|
header: 1,
|
|
|
|
extension: 0,
|
|
|
|
connectionId: uint16(rand.Intn(65536)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2016-12-15 05:51:09 -05:00
|
|
|
internet.RegisterPacketHeader(serial.GetMessageType(new(Config)), UTPFactory{})
|
2016-12-08 10:27:41 -05:00
|
|
|
}
|