Skip to content

Instantly share code, notes, and snippets.

@TexRx
Forked from karlseguin/gist:782799
Created May 23, 2012 02:04
Show Gist options
  • Save TexRx/2772841 to your computer and use it in GitHub Desktop.
Save TexRx/2772841 to your computer and use it in GitHub Desktop.
try to bust through proxies for a remote address
private static readonly string[] _ipHeaderOrder = new[] { "HTTP_X_FORWARDED_FOR", "HTTP_X_CLUSTER_CLIENT_IP", "REMOTE_ADDR" };
public static string ClientAddress(this HttpRequest request)
{
foreach (string header in _ipHeaderOrder)
{
string ipAddress = request.ServerVariables[header];
if (ipAddress != null)
{
return ipAddress;
}
}
return string.Empty;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment