Merge pull request #1229 from voodoos/cleanup/SocketSharp

Cleaning WebSocketSharp continued
This commit is contained in:
Bond-009
2019-05-09 17:16:51 +02:00
committed by GitHub
3 changed files with 27 additions and 116 deletions

View 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";
}
}