|
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 // INCLUDE FILES |
|
16 // |
|
17 |
|
18 |
|
19 |
|
20 #include "SIPExSIPStateBase.h" |
|
21 #include "SIPExSIPEngine.h" |
|
22 |
|
23 // ============================ MEMBER FUNCTIONS =============================== |
|
24 |
|
25 // ----------------------------------------------------------------------------- |
|
26 // CSIPExSIPStateBase::CSIPExSIPStateBase |
|
27 // (other items were commented in a header). |
|
28 // ----------------------------------------------------------------------------- |
|
29 CSIPExSIPStateBase::CSIPExSIPStateBase() |
|
30 { |
|
31 } |
|
32 |
|
33 // ----------------------------------------------------------------------------- |
|
34 // CSIPExSIPStateBase::CSIPExSIPStateBase |
|
35 // (other items were commented in a header). |
|
36 // ----------------------------------------------------------------------------- |
|
37 CSIPExSIPStateBase::~CSIPExSIPStateBase() |
|
38 { |
|
39 } |
|
40 |
|
41 // ----------------------------------------------------------------------------- |
|
42 // CSIPExSIPStateBase::SendInviteL() |
|
43 // (other items were commented in a header). |
|
44 // ----------------------------------------------------------------------------- |
|
45 void CSIPExSIPStateBase::SendInviteL( |
|
46 CSIPExSIPEngine& /* aEngine */, |
|
47 const TDesC8& /* aSipUri */ ) |
|
48 { |
|
49 //User::Leave( KErrTotalLossOfPrecision ); |
|
50 } |
|
51 |
|
52 // ----------------------------------------------------------------------------- |
|
53 // CSIPExSIPStateBase::CancelInviteL() |
|
54 // (other items were commented in a header). |
|
55 // ----------------------------------------------------------------------------- |
|
56 void CSIPExSIPStateBase::CancelInviteL( |
|
57 CSIPExSIPEngine& /* aEngine */ ) |
|
58 { |
|
59 //User::Leave( KErrTotalLossOfPrecision ); |
|
60 } |
|
61 |
|
62 |
|
63 // ----------------------------------------------------------------------------- |
|
64 // CSIPExSIPStateBase::AcceptInviteL() |
|
65 // (other items were commented in a header). |
|
66 // ----------------------------------------------------------------------------- |
|
67 void CSIPExSIPStateBase::AcceptInviteL( |
|
68 CSIPExSIPEngine& /* aEngine */ ) |
|
69 { |
|
70 //User::Leave( KErrTotalLossOfPrecision ); |
|
71 } |
|
72 |
|
73 |
|
74 // ----------------------------------------------------------------------------- |
|
75 // CSIPExSIPStateBase::DeclineInviteL() |
|
76 // (other items were commented in a header). |
|
77 // ----------------------------------------------------------------------------- |
|
78 void CSIPExSIPStateBase::DeclineInviteL( |
|
79 CSIPExSIPEngine& /* aEngine */ ) |
|
80 { |
|
81 //User::Leave( KErrTotalLossOfPrecision ); |
|
82 } |
|
83 |
|
84 |
|
85 |
|
86 // ----------------------------------------------------------------------------- |
|
87 // CSIPExSIPStateBase::EndSessionL() |
|
88 // (other items were commented in a header). |
|
89 // ----------------------------------------------------------------------------- |
|
90 void CSIPExSIPStateBase::EndSessionL( CSIPExSIPEngine& /* aEngine */ ) |
|
91 { |
|
92 //User::Leave( KErrTotalLossOfPrecision ); |
|
93 } |
|
94 |
|
95 |
|
96 // ----------------------------------------------------------------------------- |
|
97 // CSIPExSIPStateBase::ResponseReceivedL() |
|
98 // (other items were commented in a header). |
|
99 // ----------------------------------------------------------------------------- |
|
100 void CSIPExSIPStateBase::ResponseReceivedL( |
|
101 CSIPExSIPEngine& /* aEngine */, |
|
102 CSIPClientTransaction& /* aTransaction */ ) |
|
103 { |
|
104 //User::Leave( KErrTotalLossOfPrecision ); |
|
105 } |
|
106 |
|
107 |
|
108 // ----------------------------------------------------------------------------- |
|
109 // CSIPExSIPStateBase::AckReceivedL() |
|
110 // (other items were commented in a header). |
|
111 // ----------------------------------------------------------------------------- |
|
112 void CSIPExSIPStateBase::AckReceivedL( |
|
113 CSIPExSIPEngine& /* aEngine */, |
|
114 CSIPServerTransaction& /* aTransaction */) |
|
115 { |
|
116 //User::Leave( KErrTotalLossOfPrecision ); |
|
117 } |
|
118 |
|
119 |
|
120 // ----------------------------------------------------------------------------- |
|
121 // CSIPExSIPStateBase::ByeReceivedL() |
|
122 // (other items were commented in a header). |
|
123 // ----------------------------------------------------------------------------- |
|
124 void CSIPExSIPStateBase::ByeReceivedL( |
|
125 CSIPExSIPEngine& /* aEngine */, |
|
126 CSIPServerTransaction& /* aTransaction */ ) |
|
127 { |
|
128 //User::Leave( KErrTotalLossOfPrecision ); |
|
129 } |
|
130 |
|
131 |
|
132 // ----------------------------------------------------------------------------- |
|
133 // CSIPExSIPStateBase::CancelReceivedL() |
|
134 // (other items were commented in a header). |
|
135 // ----------------------------------------------------------------------------- |
|
136 void CSIPExSIPStateBase::CancelReceivedL( |
|
137 CSIPExSIPEngine& /* aEngine */, |
|
138 CSIPClientTransaction& /* aTransaction */ ) |
|
139 { |
|
140 //User::Leave( KErrTotalLossOfPrecision ); |
|
141 } |
|
142 |
|
143 |
|
144 // ----------------------------------------------------------------------------- |
|
145 // CSIPExSIPStateBase::InviteReceivedL() |
|
146 // (other items were commented in a header). |
|
147 // ----------------------------------------------------------------------------- |
|
148 void CSIPExSIPStateBase::InviteReceivedL( |
|
149 CSIPExSIPEngine& /* aEngine */, |
|
150 CSIPServerTransaction* /* aTransaction */ ) |
|
151 { |
|
152 //User::Leave( KErrTotalLossOfPrecision ); |
|
153 } |
|
154 |
|
155 |
|
156 // ----------------------------------------------------------------------------- |
|
157 // CSIPExSIPStateBase::ErrorOccurred() |
|
158 // (other items were commented in a header). |
|
159 // ----------------------------------------------------------------------------- |
|
160 // |
|
161 void CSIPExSIPStateBase::ErrorOccured( |
|
162 CSIPExSIPEngine& /*aContext*/, |
|
163 TInt /*aError*/) |
|
164 { |
|
165 } |
|
166 |