Files

17 lines
358 B
C#
Raw Permalink Normal View History

2023-01-01 12:50:59 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace STUN.Attributes
{
public class STUNSourceAddressAttribute : STUNEndPointAttribute
{
public override string ToString()
{
return string.Format("SOURCE-ADDRESS {0}", EndPoint);
}
}
}