@ -93,8 +93,7 @@ string HTTPError(int nStatus, bool keepalive, bool headersOnly)
headersOnly , " text/plain " ) ;
headersOnly , " text/plain " ) ;
}
}
string HTTPReply ( int nStatus , const string & strMsg , bool keepalive ,
string HTTPReplyHeader ( int nStatus , bool keepalive , size_t contentLength , const char * contentType )
bool headersOnly , const char * contentType )
{
{
return strprintf (
return strprintf (
" HTTP/1.1 %d %s \r \n "
" HTTP/1.1 %d %s \r \n "
@ -103,17 +102,25 @@ string HTTPReply(int nStatus, const string& strMsg, bool keepalive,
" Content-Length: %u \r \n "
" Content-Length: %u \r \n "
" Content-Type: %s \r \n "
" Content-Type: %s \r \n "
" Server: bitcoin-json-rpc/%s \r \n "
" Server: bitcoin-json-rpc/%s \r \n "
" \r \n "
" \r \n " ,
" %s " ,
nStatus ,
nStatus ,
httpStatusDescription ( nStatus ) ,
httpStatusDescription ( nStatus ) ,
rfc1123Time ( ) ,
rfc1123Time ( ) ,
keepalive ? " keep-alive " : " close " ,
keepalive ? " keep-alive " : " close " ,
( headersOnly ? 0 : strMsg . size ( ) ) ,
contentLength ,
contentType ,
contentType ,
FormatFullVersion ( ) ,
FormatFullVersion ( ) ) ;
( headersOnly ? " " : strMsg . c_str ( ) )
}
) ;
string HTTPReply ( int nStatus , const string & strMsg , bool keepalive ,
bool headersOnly , const char * contentType )
{
if ( headersOnly )
{
return HTTPReplyHeader ( nStatus , keepalive , 0 , contentType ) ;
} else {
return HTTPReplyHeader ( nStatus , keepalive , strMsg . size ( ) , contentType ) + strMsg ;
}
}
}
bool ReadHTTPRequestLine ( std : : basic_istream < char > & stream , int & proto ,
bool ReadHTTPRequestLine ( std : : basic_istream < char > & stream , int & proto ,