| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System.Diagnostics.CodeAnalysis;
- using System.Net;
- using System.Net.Sockets;
- namespace STUN;
- public class StunServer
- {
- public string Hostname { get; }
- public ushort Port { get; }
- public const ushort DefaultPort = 3478;
- public const ushort DefaultTlsPort = 5349;
- public StunServer()
- {
- Hostname = @"stun.syncthing.net";
- Port = DefaultPort;
- }
- private StunServer(string hostname, ushort port)
- {
- Hostname = hostname;
- Port = port;
- }
- public static bool TryParse(string s, [NotNullWhen(true)] out StunServer? result, ushort defaultPort = DefaultPort)
- {
- if (!HostnameEndpoint.TryParse(s, out HostnameEndpoint? host, defaultPort))
- {
- result = null;
- return false;
- }
- result = new StunServer(host.Hostname, host.Port);
- return true;
- }
- public override string ToString()
- {
- if (Port is DefaultPort)
- {
- return Hostname;
- }
- if (IPAddress.TryParse(Hostname, out IPAddress? ip) && ip.AddressFamily is AddressFamily.InterNetworkV6)
- {
- return $@"[{ip}]:{Port}";
- }
- return $@"{Hostname}:{Port}";
- }
- }
|