SipHelper: add debug log for challenge responses.

Change-Id: If0143a0f076ef30b1b8998e477df933923bfa7b1
This commit is contained in:
Hung-ying Tyan
2010-10-10 23:48:10 +08:00
parent 6b8bdaa9c8
commit 692cac9fdd

View File

@@ -238,6 +238,8 @@ class SipHelper {
ClientTransaction tid = responseEvent.getClientTransaction();
ClientTransaction ct = authenticationHelper.handleChallenge(
responseEvent.getResponse(), tid, mSipProvider, 5);
if (DEBUG) Log.d(TAG, "send request with challenge response: "
+ ct.getRequest());
ct.sendRequest();
return ct;
}