diff options
| author | Greenback <jimcartlidge@yahoo.co.uk> | 2020-12-07 22:06:28 +0000 |
|---|---|---|
| committer | Greenback <jimcartlidge@yahoo.co.uk> | 2020-12-07 22:06:28 +0000 |
| commit | d69f2d7d7fd4209652878d84f811051e69fb45b2 (patch) | |
| tree | 4bdeb80458cd9db778f2d332d63d37c1e0622aa7 /Jellyfin.Networking/Configuration/NetworkConfiguration.cs | |
| parent | f2c2beca0f9a249edd7cc967c328d32ebdc30092 (diff) | |
DNLA over HTTP only
Diffstat (limited to 'Jellyfin.Networking/Configuration/NetworkConfiguration.cs')
| -rw-r--r-- | Jellyfin.Networking/Configuration/NetworkConfiguration.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Jellyfin.Networking/Configuration/NetworkConfiguration.cs b/Jellyfin.Networking/Configuration/NetworkConfiguration.cs index df420f48a..8db3d3a9c 100644 --- a/Jellyfin.Networking/Configuration/NetworkConfiguration.cs +++ b/Jellyfin.Networking/Configuration/NetworkConfiguration.cs @@ -16,7 +16,7 @@ namespace Jellyfin.Networking.Configuration public const int DefaultHttpPort = 8096; /// <summary> - /// The default value for <see cref="PublicHttpsPort"/> and <see cref="HttpsPortNumber"/>. + /// The default value for <see cref="PublicHttpsPort"/> and <see cref="HttpsServerPortNumber"/>. /// </summary> public const int DefaultHttpsPort = 8920; @@ -76,7 +76,7 @@ namespace Jellyfin.Networking.Configuration /// Gets or sets the HTTPS server port number. /// </summary> /// <value>The HTTPS server port number.</value> - public int HttpsPortNumber { get; set; } = DefaultHttpsPort; + public int HttpsServerPortNumber { get; set; } = DefaultHttpsPort; /// <summary> /// Gets or sets a value indicating whether to use HTTPS. @@ -88,7 +88,7 @@ namespace Jellyfin.Networking.Configuration public bool EnableHttps { get; set; } /// <summary> - /// Gets or sets the public mapped port. + /// Gets or sets the Upublic mapped port. /// </summary> /// <value>The public mapped port.</value> public int PublicPort { get; set; } = DefaultHttpPort; |
