|
1 /** @file |
|
2 * Copyright (c) 2008 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: Class used in WLan Lost case |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // INCLUDE FILES |
|
20 #include "upnpcpstackrequestorimplbase.h" |
|
21 |
|
22 |
|
23 // ----------------------------------------------------------------------------- |
|
24 // CUpnpCpStackRequestorImplBase::SearchL |
|
25 // ----------------------------------------------------------------------------- |
|
26 // |
|
27 void CUpnpCpStackRequestorImplBase::SearchL( const TDesC8& /*aSearchString*/ ) |
|
28 { |
|
29 User::Leave( KErrNotReady ); |
|
30 } |
|
31 |
|
32 // ----------------------------------------------------------------------------- |
|
33 // CUpnpCpStackRequestorImplBase::SearchL |
|
34 // ----------------------------------------------------------------------------- |
|
35 // |
|
36 void CUpnpCpStackRequestorImplBase::SearchL( const TDesC16& /*aSearchString*/ ) |
|
37 { |
|
38 User::Leave( KErrNotReady ); |
|
39 } |
|
40 |
|
41 // ----------------------------------------------------------------------------- |
|
42 // CUpnpCpStackRequestorImplBase::AddCustomerL |
|
43 // ----------------------------------------------------------------------------- |
|
44 // |
|
45 void CUpnpCpStackRequestorImplBase::AddCustomerL( |
|
46 const MUpnpDispatcherCustomer& /*aCustomer*/ ) |
|
47 { |
|
48 User::Leave( KErrNotReady ); |
|
49 } |
|
50 |
|
51 // ----------------------------------------------------------------------------- |
|
52 // CUpnpCpStackRequestorImplBase::RemoveCustomer |
|
53 // ----------------------------------------------------------------------------- |
|
54 // |
|
55 void CUpnpCpStackRequestorImplBase::RemoveCustomer( |
|
56 const MUpnpDispatcherCustomer& /*aCustomer*/ ) |
|
57 { |
|
58 } |
|
59 |
|
60 // ----------------------------------------------------------------------------- |
|
61 // CUpnpCpStackRequestorImplBase::HttpServerAddress |
|
62 // ----------------------------------------------------------------------------- |
|
63 // |
|
64 TInetAddr CUpnpCpStackRequestorImplBase::HttpServerAddress() |
|
65 { |
|
66 return TInetAddr(); |
|
67 } |
|
68 |
|
69 // ----------------------------------------------------------------------------- |
|
70 // CUpnpCpStackRequestorImplBase::SendLocalRequestL |
|
71 // ----------------------------------------------------------------------------- |
|
72 // |
|
73 void CUpnpCpStackRequestorImplBase::SendLocalRequestL( |
|
74 CUpnpHttpMessage* /*aMessage*/, MUpnpDispatcherCustomer& /*aCustomer*/ ) |
|
75 { |
|
76 User::Leave( KErrNotReady ); |
|
77 } |
|
78 |
|
79 // ----------------------------------------------------------------------------- |
|
80 // CUpnpCpStackRequestorImplBase::SendMessageL |
|
81 // ----------------------------------------------------------------------------- |
|
82 // |
|
83 void CUpnpCpStackRequestorImplBase::SendMessageL( CUpnpHttpMessage* /*aMessage*/, |
|
84 MUpnpDispatcherCustomer& /*aCustomer*/, |
|
85 TBool /*aIsLocal*/ ) |
|
86 { |
|
87 User::Leave( KErrNotReady ); |
|
88 } |
|
89 |
|
90 // ----------------------------------------------------------------------------- |
|
91 // CUpnpCpStackRequestorImplBase::StopFilteringL |
|
92 // ----------------------------------------------------------------------------- |
|
93 // |
|
94 void CUpnpCpStackRequestorImplBase::StopIgnoringL( const TDesC8& /*aUuids*/ ) |
|
95 { |
|
96 User::Leave( KErrNotReady ); |
|
97 } |
|
98 |
|
99 // ----------------------------------------------------------------------------- |
|
100 // CUpnpCpStackRequestorImplBase::StartIPFilteringL |
|
101 // ----------------------------------------------------------------------------- |
|
102 // |
|
103 void CUpnpCpStackRequestorImplBase::StartIPFilteringL() |
|
104 { |
|
105 User::Leave( KErrNotReady ); |
|
106 } |
|
107 |
|
108 // ----------------------------------------------------------------------------- |
|
109 // CUpnpCpHttpClientRequestorImplBase::StopIPFiltering |
|
110 // ----------------------------------------------------------------------------- |
|
111 // |
|
112 void CUpnpCpStackRequestorImplBase::StopIPFiltering() |
|
113 { |
|
114 } |
|
115 |
|
116 // ----------------------------------------------------------------------------- |
|
117 // CUpnpCpHttpClientRequestorImplBase::StopHttpServer |
|
118 // ----------------------------------------------------------------------------- |
|
119 // |
|
120 void CUpnpCpStackRequestorImplBase::StopHttpServer() |
|
121 { |
|
122 } |
|
123 |
|
124 // ----------------------------------------------------------------------------- |
|
125 // CUpnpCpHttpClientRequestorImplBase::StartHttpServer |
|
126 // ----------------------------------------------------------------------------- |
|
127 // |
|
128 void CUpnpCpStackRequestorImplBase::StartHttpServerL() |
|
129 { |
|
130 } |
|
131 |
|
132 // End of File |