mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-27 20:45:03 +01:00
Merge branch 'master' into release-10.3.z
This commit is contained in:
@@ -25,11 +25,6 @@ namespace MediaBrowser.Common
|
||||
/// <value>The device identifier.</value>
|
||||
string SystemId { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Occurs when [application updated].
|
||||
/// </summary>
|
||||
event EventHandler<GenericEventArgs<PackageVersionInfo>> ApplicationUpdated;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether this instance has pending kernel reload.
|
||||
/// </summary>
|
||||
|
||||
11
MediaBrowser.Common/Net/CustomHeaderNames.cs
Normal file
11
MediaBrowser.Common/Net/CustomHeaderNames.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace MediaBrowser.Common.Net
|
||||
{
|
||||
public static class CustomHeaderNames
|
||||
{
|
||||
// Other Headers
|
||||
public const string XForwardedFor = "X-Forwarded-For";
|
||||
public const string XForwardedPort = "X-Forwarded-Port";
|
||||
public const string XForwardedProto = "X-Forwarded-Proto";
|
||||
public const string XRealIP = "X-Real-IP";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user