networksecurity/tlsprovider/inc/tlsclientserver.h
changeset 0 af10295192d8
equal deleted inserted replaced
-1:000000000000 0:af10295192d8
       
     1 // Copyright (c) 2005-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 // TLSCACHECLIENTSERVER.H
       
    15 // 
       
    16 //
       
    17 
       
    18 /**
       
    19  @file 
       
    20  @internalTechnology
       
    21 */
       
    22  
       
    23 #ifndef __TLSCLIENTSERVER_H__
       
    24 #define __TLSCLIENTSERVER_H__
       
    25 
       
    26 _LIT(KCacheServerName, "!TLSCACHESERVER");
       
    27 _LIT(KCacheServerExe, "TlsCacheServer");
       
    28 
       
    29 const TUid KCacheServerUid = {0x200008D1};
       
    30 
       
    31 enum TCacheEntryState
       
    32 	{
       
    33 	ENewEntry,
       
    34 	EEntryAwaitingApproval,
       
    35 	EEntryDenied,
       
    36 	EEntryApproved
       
    37 	};
       
    38 	
       
    39 enum TCacheFunction
       
    40 	{
       
    41 	EOpen,
       
    42 	EGetEntryStatus,
       
    43 	ESetEntryStatus,
       
    44 	ENotifyChange,
       
    45 	ECancel
       
    46 	};
       
    47 
       
    48 #endif /* __TLSCLIENTSERVER_H__ */