You've already forked linux-packaging-mono
Imported Upstream version 5.14.0.141
Former-commit-id: 3b53584824e57e63d7af009d31bd6efb72155c45
This commit is contained in:
parent
53f56bd502
commit
f87a49ea3f
@ -828,7 +828,7 @@ namespace System.Net
|
||||
WebOperation SendRequest (bool redirecting, BufferOffsetSize writeBuffer, CancellationToken cancellationToken)
|
||||
{
|
||||
lock (locker) {
|
||||
WebConnection.Debug ($"HWR SEND REQUEST: Req={ID} requestSent={requestSent} redirecting={redirecting}");
|
||||
WebConnection.Debug ($"HWR SEND REQUEST: Req={ID} requestSent={requestSent} actualUri={actualUri} redirecting={redirecting}");
|
||||
|
||||
WebOperation operation;
|
||||
if (!redirecting) {
|
||||
@ -1007,14 +1007,14 @@ namespace System.Net
|
||||
try {
|
||||
cancellationToken.ThrowIfCancellationRequested ();
|
||||
|
||||
WebConnection.Debug ($"HWR GET RESPONSE LOOP: Req={ID} {auth_state.NtlmAuthState}");
|
||||
WebConnection.Debug ($"HWR GET RESPONSE LOOP: Req={ID} Op={operation?.ID} {auth_state.NtlmAuthState}");
|
||||
|
||||
writeStream = await operation.GetRequestStreamInternal ();
|
||||
await writeStream.WriteRequestAsync (cancellationToken).ConfigureAwait (false);
|
||||
|
||||
stream = await operation.GetResponseStream ();
|
||||
|
||||
WebConnection.Debug ($"HWR RESPONSE LOOP #0: Req={ID} - {stream?.Headers != null}");
|
||||
WebConnection.Debug ($"HWR RESPONSE LOOP #0: Req={ID} Op={operation?.ID} - {stream?.Headers != null}");
|
||||
|
||||
(response, redirect, mustReadAll, writeBuffer, ntlm) = await GetResponseFromData (
|
||||
stream, cancellationToken).ConfigureAwait (false);
|
||||
@ -1022,7 +1022,7 @@ namespace System.Net
|
||||
throwMe = GetWebException (e);
|
||||
}
|
||||
|
||||
WebConnection.Debug ($"HWR GET RESPONSE LOOP #1: Req={ID} - redirect={redirect} mustReadAll={mustReadAll} writeBuffer={writeBuffer != null} ntlm={ntlm != null} - {throwMe != null}");
|
||||
WebConnection.Debug ($"HWR GET RESPONSE LOOP #1: Req={ID} Op={operation?.ID} - redirect={redirect} mustReadAll={mustReadAll} writeBuffer={writeBuffer != null} ntlm={ntlm != null} - {throwMe != null}");
|
||||
|
||||
lock (locker) {
|
||||
if (throwMe != null) {
|
||||
|
Reference in New Issue
Block a user