networkprotocols/dnsproxy/dnsproxyclient/inc/dnsproxyclientconfigparams.h
changeset 0 af10295192d8
equal deleted inserted replaced
-1:000000000000 0:af10295192d8
       
     1 // Copyright (c) 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 // dnsserverconfigparams.h
       
    15 // This file contains dns proxy server configuration parameters
       
    16 //
       
    17 
       
    18 
       
    19 
       
    20 /**
       
    21  @file
       
    22  @internalComponent
       
    23 */
       
    24 
       
    25 #ifndef __DNSPROXYCLIENTCONFIGPARAMS_H__
       
    26 #define __DNSPROXYCLIENTCONFIGPARAMS_H__
       
    27 
       
    28 #include "e32std.h"
       
    29 
       
    30 // The server's identity within the client-server framework
       
    31 _LIT(KServerName,"DNSProxy");
       
    32 _LIT(KServerExeName,"DNSProxy.exe");
       
    33 
       
    34 
       
    35 /**
       
    36 * The enum defines the client side commands which are handled by the server.
       
    37 *
       
    38 **/
       
    39 enum TDnsProxyServerConfigParams
       
    40     {    
       
    41     EProxyConfigure,
       
    42     EProxyAddDb,
       
    43     EProxyRemoveDb,
       
    44     EProxyUpdateDomainName,
       
    45     EProxyConfigureUplink,
       
    46     ENotSupported    
       
    47     };
       
    48 
       
    49 #endif // __DNSPROXYCLIENTCONFIGPARAMS_H__