Multiprocotol Terminalprogram (BAT)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MultiTerm/MultiTerm.Protocols/Tcp/TcpConnectedMessage.cs

10 lines
420 B

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