| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 | package muximport (	"v2ray.com/core/common"	"v2ray.com/core/common/bitmask"	"v2ray.com/core/common/buf"	"v2ray.com/core/common/net"	"v2ray.com/core/common/protocol"	"v2ray.com/core/common/serial")type SessionStatus byteconst (	SessionStatusNew       SessionStatus = 0x01	SessionStatusKeep      SessionStatus = 0x02	SessionStatusEnd       SessionStatus = 0x03	SessionStatusKeepAlive SessionStatus = 0x04)const (	OptionData  bitmask.Byte = 0x01	OptionError bitmask.Byte = 0x02)type TargetNetwork byteconst (	TargetNetworkTCP TargetNetwork = 0x01	TargetNetworkUDP TargetNetwork = 0x02)var addrParser = protocol.NewAddressParser(	protocol.AddressFamilyByte(byte(protocol.AddressTypeIPv4), net.AddressFamilyIPv4),	protocol.AddressFamilyByte(byte(protocol.AddressTypeDomain), net.AddressFamilyDomain),	protocol.AddressFamilyByte(byte(protocol.AddressTypeIPv6), net.AddressFamilyIPv6),	protocol.PortThenAddress(),)/*Frame format2 bytes - length2 bytes - session id1 bytes - status1 bytes - option1 byte - network2 bytes - portn bytes - address*/type FrameMetadata struct {	Target        net.Destination	SessionID     uint16	Option        bitmask.Byte	SessionStatus SessionStatus}func (f FrameMetadata) WriteTo(b *buf.Buffer) error {	lenBytes := b.Bytes()	common.Must2(b.AppendBytes(0x00, 0x00))	len0 := b.Len()	if err := b.AppendSupplier(serial.WriteUint16(f.SessionID)); err != nil {		return err	}	common.Must2(b.AppendBytes(byte(f.SessionStatus), byte(f.Option)))	if f.SessionStatus == SessionStatusNew {		switch f.Target.Network {		case net.Network_TCP:			common.Must2(b.AppendBytes(byte(TargetNetworkTCP)))		case net.Network_UDP:			common.Must2(b.AppendBytes(byte(TargetNetworkUDP)))		}		if err := addrParser.WriteAddressPort(b, f.Target.Address, f.Target.Port); err != nil {			return err		}	}	len1 := b.Len()	serial.Uint16ToBytes(uint16(len1-len0), lenBytes)	return nil}// ReadFrameFrom reads a FrameMetadata from the given buffer.// Visible for testing only.func ReadFrameFrom(b *buf.Buffer) (*FrameMetadata, error) {	if b.Len() < 4 {		return nil, newError("insufficient buffer: ", b.Len())	}	f := &FrameMetadata{		SessionID:     serial.BytesToUint16(b.BytesTo(2)),		SessionStatus: SessionStatus(b.Byte(2)),		Option:        bitmask.Byte(b.Byte(3)),	}	if f.SessionStatus == SessionStatusNew {		network := TargetNetwork(b.Byte(4))		b.Advance(5)		addr, port, err := addrParser.ReadAddressPort(nil, b)		if err != nil {			return nil, newError("failed to parse address and port").Base(err)		}		switch network {		case TargetNetworkTCP:			f.Target = net.TCPDestination(addr, port)		case TargetNetworkUDP:			f.Target = net.UDPDestination(addr, port)		default:			return nil, newError("unknown network type: ", network)		}	}	return f, nil}
 |