using System.Net; namespace MultiTerm.Protocols.Tcp; /// /// A message that is sent by the to report that it has connected to an endpoint. /// Main reason to use this message is to find out the of the endpoint. /// May be null, e.g. if no IP is connected anymore. /// internal record TcpConnectedMessage(IPAddress? ResolvedAddress);