NetworkProtocol
public enum NetworkProtocol
This enum describes a single network protocol data model
-
Unencrypted HTTP.
Declaration
Swift
case HTTP(port: Int, isEnabled: Bool)Parameters
portThe TCP Port of this service.
isEnabledTrue, if the service is enabled.
-
Encrypted HTTPS.
Declaration
Swift
case HTTPS(port: Int, isEnabled: Bool)Parameters
portThe TCP Port of this service.
isEnabledTrue, if the service is enabled.
-
RTSP Streaming.
Declaration
Swift
case RTSP(port: Int, isEnabled: Bool)Parameters
portThe TCP Port of this service.
isEnabledTrue, if the service is enabled.
View on GitHub
NetworkProtocol Enumeration Reference