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.
15 lines
446 B
15 lines
446 B
namespace MultiTerm.Protocols.Network;
|
|
|
|
internal interface INetworkProtocolSettings : 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; }
|
|
}
|
|
|