tcpiputils/dhcp/NetCfgExtnDhcp/src/NetCfgExtnDhcp.h
changeset 0 af10295192d8
equal deleted inserted replaced
-1:000000000000 0:af10295192d8
       
     1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // RStartServer Client side header
       
    15 // Declares the R class to start server process,
       
    16 // the class covers EPOC platform & emulator diferences
       
    17 // 
       
    18 //
       
    19 
       
    20 /**
       
    21  @file CS_DeamonControl.h
       
    22  @internalComponent
       
    23 */
       
    24 
       
    25 #if !defined (__NET_CFG_EXTN_DHCP_H__)
       
    26 #define __NET_CFG_EXTN_DHCP_H__
       
    27 
       
    28 #include <e32base.h>
       
    29 
       
    30 #include <comms-infras/networkconfigextensionbase.h>
       
    31 #include "es_enum.h"
       
    32 #include <comms-infras/commsdebugutility.h>
       
    33 
       
    34 //-- for some DHCPv4 constants and data structures definition
       
    35 #include <comms-infras/es_config.h>
       
    36 #include <nifman.h>
       
    37 
       
    38 
       
    39 __FLOG_STMT(_LIT8(KLogTagNetCfgExtnDhcp, "NetCfgExtnDhcp");)
       
    40 
       
    41 /**
       
    42  Daemon configuration, uses RConfigDaemon generic config daemon client API
       
    43  to configure network layer
       
    44  @internalTechnology
       
    45  @version 0.03
       
    46  @date	26/05/2004
       
    47 */
       
    48 class CNetworkConfigExtensionDhcp : public CNetworkConfigExtensionBase
       
    49 	{
       
    50 public:
       
    51   	static CNetworkConfigExtensionDhcp* NewL(TAny* aMNifIfNotify);
       
    52    	virtual ~CNetworkConfigExtensionDhcp();
       
    53 
       
    54 	// From CNetworkConfigExtensionBase
       
    55    	void SendIoctlMessageL(const ESock::RLegacyResponseMsg& aMessage);
       
    56 
       
    57 protected:
       
    58    	CNetworkConfigExtensionDhcp(MNifIfNotify& aNifIfNotify);
       
    59   	void ConstructL();
       
    60 	};
       
    61 
       
    62 
       
    63 inline CNetworkConfigExtensionDhcp::CNetworkConfigExtensionDhcp(MNifIfNotify& aNifIfNotify) :
       
    64    CNetworkConfigExtensionBase(aNifIfNotify)
       
    65 /**
       
    66  CNetworkConfigExtensionBase - constructor
       
    67  @internalComponent
       
    68  @param aNifIfNotify - client of the control
       
    69  @version 0.02
       
    70 */
       
    71 	{
       
    72 	}
       
    73 
       
    74 
       
    75 
       
    76 #endif
       
    77