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/Udp/IUdpProtocolSettings.cs

15 lines
437 B

namespace MultiTerm.Protocols.Udp;
internal interface IUdpProtocolSettings : IProtocolSettings
{
/// <summary>
/// Hostname to connect to.
/// Can be a hostname with or without domain or an IPv4/IVv6 address.
/// </summary>
string Hostname {get; internal set; }
/// <summary>
/// Port of the end device. Will also be the port that is listened on.
/// </summary>
int Port { get; internal set; }
}