Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 22 additions & 21 deletions src/PepperDash.Core/Comm/eControlMethods.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,74 +18,75 @@ public enum eControlMethod
/// <summary>
/// RS232/422/485
/// </summary>
Com,
Com = 1,
/// <summary>
/// Crestron IpId (most Crestron ethernet devices)
/// </summary>
IpId,
IpId = 2,
/// <summary>
/// Crestron IpIdTcp (HD-MD series, etc.)
/// </summary>
IpidTcp,
IpidTcp = 3,
/// <summary>
/// Crestron IR control
/// </summary>
IR,
IR = 4,
/// <summary>
/// SSH client
/// </summary>
Ssh,
Ssh = 5,
/// <summary>
/// TCP/IP client
/// </summary>
Tcpip,
Tcpip = 6,
/// <summary>
/// Telnet
/// </summary>
Telnet,
Telnet = 7,
/// <summary>
/// Crestnet device
/// </summary>
Cresnet,
Cresnet = 8,
/// <summary>
/// CEC Control, via a DM HDMI port
/// </summary>
Cec,
Cec = 9,
/// <summary>
/// UDP Server
/// </summary>
Udp,
/// <summary>
/// UDP client
/// </summary>
UdpClient,
Udp = 10,

/// <summary>
/// HTTP client
/// </summary>
Http,
Http = 11,
/// <summary>
/// HTTPS client
/// </summary>
Https,
Https = 12,
/// <summary>
/// Websocket client
/// </summary>
Ws,
Ws = 13,
/// <summary>
/// Secure Websocket client
/// </summary>
Wss,
Wss = 14,
/// <summary>
/// Secure TCP/IP
/// </summary>
SecureTcpIp,
SecureTcpIp = 15,
/// <summary>
/// Used when comms needs to be handled in SIMPL and bridged opposite the normal direction
/// </summary>
ComBridge,
ComBridge = 16,
/// <summary>
/// InfinetEX control
/// </summary>
InfinetEx
InfinetEx = 17,
/// <summary>
/// UDP client
Comment thread
ndorin marked this conversation as resolved.
/// </summary>
UdpClient = 18,
}
}
Loading