diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-01-30 16:43:07 -0800 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2009-01-30 16:45:51 -0800 |
commit | 2be22122f583dd60d0255d1cf3a096c84770a182 (patch) | |
tree | 3acbbe0231dc21689e863cf54ae0798283ccd86b | |
parent | b88bfe894bff20625f7ec4f2174ab9ee62654522 (diff) | |
download | DotNetOpenAuth-2be22122f583dd60d0255d1cf3a096c84770a182.zip DotNetOpenAuth-2be22122f583dd60d0255d1cf3a096c84770a182.tar.gz DotNetOpenAuth-2be22122f583dd60d0255d1cf3a096c84770a182.tar.bz2 |
Added another HTTP header to NOT copy explicitly.
-rw-r--r-- | src/DotNetOpenAuth/Messaging/MessagingUtilities.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs b/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs index c774e99..ee08ed0 100644 --- a/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs +++ b/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs @@ -54,7 +54,7 @@ namespace DotNetOpenAuth.Messaging { /// <summary> /// HTTP headers that must be copied using their proper properties instead of directly. /// </summary> - private static readonly string[] HeadersToNotCopy = new string[] { "Host", "Connection" }; + private static readonly string[] HeadersToNotCopy = new string[] { "Host", "Connection", "Proxy-Connection" }; /// <summary> /// Gets the original request URL, as seen from the browser before any URL rewrites on the server if any. |