equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * Name : CStatePendingKey.h |
|
16 * Part of : SIPSec |
|
17 * Version : SIP/4.0 |
|
18 * |
|
19 */ |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 /** |
|
25 @internalComponent |
|
26 */ |
|
27 |
|
28 #ifndef CSTATEPENDINGKEY_H |
|
29 #define CSTATEPENDINGKEY_H |
|
30 |
|
31 #include "CState.h" |
|
32 |
|
33 /** |
|
34 * @brief CSipSecAgreeRecord state "pending key" |
|
35 * Record is waiting for keying material from SIPSec FW |
|
36 * |
|
37 */ |
|
38 class CPendingKey : public CState |
|
39 { |
|
40 public: |
|
41 |
|
42 CPendingKey(); |
|
43 |
|
44 CState::TSecAgreeRecordState State(); |
|
45 |
|
46 void TimerExpiredL( CSipSecAgreeRecord& aRecord, |
|
47 TTimerId aTimerId, |
|
48 TAny* aTimerParam ); |
|
49 |
|
50 void Resp4xxL( CSipSecAgreeRecord& aRecord, |
|
51 CSIPResponse& aResponse, |
|
52 CSIPRequest& aRequest ); |
|
53 |
|
54 TBool AuthKeyL( CSipSecAgreeRecord& aRecord, const TDesC8& aAuthKey ); |
|
55 |
|
56 void AuthKeyFailedL( CSipSecAgreeRecord& aRec ); |
|
57 |
|
58 void ClearSaL( CSipSecAgreeRecord& aRec ); |
|
59 |
|
60 }; |
|
61 |
|
62 #endif // CSTATEPENDINGKEY_H |
|
63 |
|
64 // End of File |