2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * Name : siphttpdigestchallengeobserver.h
16 * Part of : SIP Client
17 * Interface : SDK API, SIP Client API
24 #ifndef MSIPHTTPDIGESTCHALLENGEOBSERVER_H
25 #define MSIPHTTPDIGESTCHALLENGEOBSERVER_H
27 // FORWARD DECLARATIONS
35 * The user must implement this interface if it intends to
36 * provide HTTP Digest credentials upon received challenges
37 * from the SIP servers on the signaling path.
38 * The user should provide credentials or ignore the challenge
39 * using functions defined in TSIPHttpDigest class.
43 class MSIPHttpDigestChallengeObserver
45 public: // New functions
47 * SIP request resulted in 401/407 response that contains
50 * @param aRealm a realm for which the challenge was received
52 virtual void ChallengeReceived(const TDesC8& aRealm) = 0;