engine/src/HttpEventHandler.cpp
changeset 86 a2933afe16a7
parent 84 3b59b88b089e
child 93 c2f1ea38ec70
equal deleted inserted replaced
85:b03018fb3418 86:a2933afe16a7
    64 			{
    64 			{
    65 			// HTTP response headers have been received. We can determine now if there is
    65 			// HTTP response headers have been received. We can determine now if there is
    66 			// going to be a response body to save.
    66 			// going to be a response body to save.
    67 			RHTTPResponse resp = aTransaction.Response();
    67 			RHTTPResponse resp = aTransaction.Response();
    68 			iLastStatusCode = resp.StatusCode();
    68 			iLastStatusCode = resp.StatusCode();
    69 			RStringF statusStr = resp.StatusText();
    69 			DP1("Status: %d", iLastStatusCode);
    70 			TBuf<32> statusStr16;
       
    71 			statusStr16.Copy(statusStr.DesC());
       
    72 			DP2("Status: %d (%S)", iLastStatusCode, &statusStr16);
       
    73 
    70 
    74 			// Dump the headers if we're being verbose
    71 			// Dump the headers if we're being verbose
    75 			//DumpRespHeadersL(aTransaction);
    72 			//DumpRespHeadersL(aTransaction);
    76 
    73 
    77 			// Determine if the body will be saved to disk
    74 			// Determine if the body will be saved to disk