Changed case of session cookie header.

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@2850 e3e1d417-86f3-4887-817a-d78f3d33393f
pull/27/merge
stan 2009-04-14 20:20:02 +00:00
parent 4c8352153d
commit 17386aa49f
1 changed files with 2 additions and 2 deletions

View File

@ -227,7 +227,7 @@ int RtspThread::run()
//}
message = "GET "+mPath+" HTTP/1.0\r\n";
message += "x-sessioncookie: "+mHttpSession+"\r\n";
message += "X-SessionCookie: "+mHttpSession+"\r\n";
if ( !mAuth.empty() )
message += stringtf( "Authorization: Basic %s\r\n", mAuth64.c_str() );
message += "\r\n";
@ -268,7 +268,7 @@ int RtspThread::run()
}
message = "POST "+mPath+" HTTP/1.0\r\n";
message += "x-sessioncookie: "+mHttpSession+"\r\n";
message += "X-SessionCookie: "+mHttpSession+"\r\n";
if ( !mAuth.empty() )
message += stringtf( "Authorization: Basic %s\r\n", mAuth64.c_str() );
message += "Content-Length: 32767\r\n";