aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Net/CustomHeaderNames.cs
diff options
context:
space:
mode:
authorVooDooS <thevoodoos@gmail.com>2019-04-12 15:25:18 +0200
committerVooDooS <thevoodoos@gmail.com>2019-04-12 15:25:18 +0200
commitba12d96d23a53ce16a1da1b2fcf68a301050b858 (patch)
tree6e67db57f11009362f09ed1455dda3f786d81928 /MediaBrowser.Common/Net/CustomHeaderNames.cs
parentbb807554e2c33f066402898a3ff79913865d50e3 (diff)
Removed wrapping of HeaderNames fields
Diffstat (limited to 'MediaBrowser.Common/Net/CustomHeaderNames.cs')
-rw-r--r--MediaBrowser.Common/Net/CustomHeaderNames.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Net/CustomHeaderNames.cs b/MediaBrowser.Common/Net/CustomHeaderNames.cs
new file mode 100644
index 000000000..ff148dc80
--- /dev/null
+++ b/MediaBrowser.Common/Net/CustomHeaderNames.cs
@@ -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";
+ }
+} \ No newline at end of file