diff options
Diffstat (limited to 'MediaBrowser.Common/Net/CustomHeaderNames.cs')
| -rw-r--r-- | MediaBrowser.Common/Net/CustomHeaderNames.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Net/CustomHeaderNames.cs b/MediaBrowser.Common/Net/CustomHeaderNames.cs new file mode 100644 index 000000000..5ca9897eb --- /dev/null +++ b/MediaBrowser.Common/Net/CustomHeaderNames.cs @@ -0,0 +1,13 @@ +#pragma warning disable CS1591 + +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"; + } +} |
