// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT

package proto

import (
	

	
)

// Protocol is IANA assigned protocol number.
type Protocol byte

const (
	// ProtoTCP is IANA assigned protocol number for TCP.
	ProtoTCP Protocol = 6
	// ProtoUDP is IANA assigned protocol number for UDP.
	ProtoUDP Protocol = 17
)

func ( Protocol) () string {
	switch  {
	case ProtoTCP:
		return "TCP"
	case ProtoUDP:
		return "UDP"
	default:
		return strconv.Itoa(int())
	}
}

// RequestedTransport represents REQUESTED-TRANSPORT attribute.
//
// This attribute is used by the client to request a specific transport
// protocol for the allocated transport address. RFC 5766 only allows the use of
// code point 17 (User Datagram Protocol).
//
// RFC 5766 Section 14.7.
type RequestedTransport struct {
	Protocol Protocol
}

func ( RequestedTransport) () string {
	return "protocol: " + .Protocol.String()
}

const requestedTransportSize = 4

// AddTo adds REQUESTED-TRANSPORT to message.
func ( RequestedTransport) ( *stun.Message) error {
	 := make([]byte, requestedTransportSize)
	[0] = byte(.Protocol)
	// b[1:4] is RFFU = 0.
	// The RFFU field MUST be set to zero on transmission and MUST be
	// ignored on reception. It is reserved for future uses.
	.Add(stun.AttrRequestedTransport, )

	return nil
}

// GetFrom decodes REQUESTED-TRANSPORT from message.
func ( *RequestedTransport) ( *stun.Message) error {
	,  := .Get(stun.AttrRequestedTransport)
	if  != nil {
		return 
	}
	if  = stun.CheckSize(stun.AttrRequestedTransport, len(), requestedTransportSize);  != nil {
		return 
	}
	.Protocol = Protocol([0])

	return nil
}