1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/epoc32/include/mw/sipauthenticateheaderbase.h Wed Mar 31 12:27:01 2010 +0100
1.3 @@ -0,0 +1,94 @@
1.4 +/*
1.5 +* Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* 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
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +* Name : sipauthenticateheaderbase.h
1.19 +* Part of : SIP Codec
1.20 +* Version : SIP/5.0
1.21 +*
1.22 +*/
1.23 +
1.24 +
1.25 +
1.26 +#ifndef CSIPAUTHENTICATEHEADERBASE_H
1.27 +#define CSIPAUTHENTICATEHEADERBASE_H
1.28 +
1.29 +// INCLUDES
1.30 +#include "sipauthheaderbase.h"
1.31 +#include "_sipcodecdefs.h"
1.32 +
1.33 +// FORWARD DECLARATIONS
1.34 +class CSIPAuthenticateHeaderParams;
1.35 +
1.36 +// CLASS DECLARATION
1.37 +/**
1.38 +* @publishedAll
1.39 +* @released
1.40 +*
1.41 +* A base class for SIP Proxy-Authenticate- and WWW-Authenticate-headers
1.42 +*
1.43 +* @lib sipcodec.lib
1.44 +*/
1.45 +class CSIPAuthenticateHeaderBase : public CSIPAuthHeaderBase
1.46 + {
1.47 + public: // Constructors and destructor
1.48 +
1.49 + /**
1.50 + * Destructor.
1.51 + */
1.52 + IMPORT_C virtual ~CSIPAuthenticateHeaderBase();
1.53 +
1.54 +
1.55 + public: // New functions
1.56 +
1.57 + /**
1.58 + * Check whether a qop-value in qop-options is present.
1.59 + * @param aQopValue the qop-value
1.60 + * @return ETrue if present, otherwise EFalse.
1.61 + */
1.62 + IMPORT_C TBool HasQopValueL(const TDesC8& aQopValue) const;
1.63 +
1.64 + public: // From CSIPHeaderBase
1.65 +
1.66 + /**
1.67 + * From CSIPHeaderBase ExternalizeSupported
1.68 + */
1.69 + IMPORT_C virtual TBool ExternalizeSupported() const;
1.70 +
1.71 + protected: // Constructors
1.72 +
1.73 + CSIPAuthenticateHeaderBase();
1.74 + void ConstructL();
1.75 + void ConstructL(const CSIPAuthenticateHeaderBase& aHeader);
1.76 +
1.77 + protected: // From CSIPHeaderBase
1.78 +
1.79 + void ExternalizeValueL(RWriteStream& aWriteStream) const;
1.80 +
1.81 + protected: // From CSIPAuthBase
1.82 +
1.83 + const CSIPParamContainerBase& Params() const;
1.84 + CSIPParamContainerBase& Params();
1.85 +
1.86 + protected: // New functions
1.87 +
1.88 + void DoInternalizeValueL(RReadStream& aReadStream);
1.89 +
1.90 + protected: // Data
1.91 +
1.92 + CSIPAuthenticateHeaderParams* iParams;
1.93 + };
1.94 +
1.95 +#endif // CSIPAUTHENTICATEHEADERBASE_H
1.96 +
1.97 +// End of File