|
1 /** |
|
2 * Copyright (c) 2003-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 * RConfigDaemon Client side header |
|
16 * Declares the Symbian OS DHCP Client API RConfigDaemon |
|
17 * |
|
18 * |
|
19 */ |
|
20 |
|
21 |
|
22 |
|
23 /** |
|
24 @file CS_Daemon.h |
|
25 */ |
|
26 |
|
27 #ifndef __RCONFIGDAEMON_H__ |
|
28 #define __RCONFIGDAEMON_H__ |
|
29 |
|
30 #include <e32base.h> |
|
31 #include <e32svr.h> |
|
32 #include <comms-infras/cs_asyncconnect.h> |
|
33 #include <comms-infras/rconfigdaemonmess.h> |
|
34 |
|
35 /** |
|
36 * The RConfigDaemon class |
|
37 * @internalTechnology |
|
38 * Implements the Symbian OS Configuration daemon Client API |
|
39 */ |
|
40 class RConfigDaemon : public RAsyncConnectBase |
|
41 { |
|
42 public: |
|
43 void Configure(const TDes8& aInfo, TRequestStatus& aStatus); |
|
44 void LinkLayerDown(); |
|
45 void LinkLayerUp(); |
|
46 void Deregister(TInt aCause, TDes8* aActionStatus, TRequestStatus& aStatus); |
|
47 void ProgressNotification(TDaemonProgressBuf& aProgress, TRequestStatus& aStatus); |
|
48 void Ioctl(TUint aOptionLevel, TUint aOptionName, TRequestStatus& aStatus, TDes8* aDes=NULL); |
|
49 void Cancel(TRequestStatus& aStatus); |
|
50 void Cancel(TUint aOpMask, TRequestStatus& aStatus); |
|
51 TVersion Version() const; |
|
52 }; |
|
53 |
|
54 #endif |
|
55 |