realtimenetprots/sipfw/SIP/ConnectionMgr/src/TTlsTransTlsConnecting.h
changeset 0 307788aac0a8
equal deleted inserted replaced
-1:000000000000 0:307788aac0a8
       
     1 /*
       
     2 * Copyright (c) 2005-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 * Name          : TTlsTransTlsConnecting.h
       
    16 * Part of       : ConnectionMgr
       
    17 * Version       : SIP/5.0 
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 /**
       
    25  @internalComponent
       
    26 */
       
    27 
       
    28 
       
    29 #ifndef TTLSTRANSTLSCONNECTING_H
       
    30 #define TTLSTRANSTLSCONNECTING_H
       
    31 
       
    32 //  INCLUDES
       
    33 #include "TTlsTransStateBase.h"
       
    34 
       
    35 // FORWARD DECLARATIONS
       
    36 
       
    37 // CLASS DECLARATION
       
    38 /**
       
    39 * TLS Transport in connecting TCP state.
       
    40 *
       
    41 */
       
    42 class TTlsTransTlsConnecting : public TTlsTransStateBase
       
    43 	{	    
       
    44 	public: // New functions
       
    45 	
       
    46 	    TTlsTransTlsConnecting( MTlsTransStateOwner& aOwner );
       
    47 	    
       
    48 		//Boolean which decides whether Server TLS certificate is valid or not
       
    49 	    TBool iValidCertificate;
       
    50 	
       
    51 	public: // From TTlsTransStateBase
       
    52 	
       
    53 	    void EnterL();
       
    54 	    
       
    55 	    TBool ConnectionOpenL();
       
    56 	    
       
    57 	};
       
    58 	
       
    59 #endif // TTLSTRANSTLSCONNECTING_H
       
    60 
       
    61 // End of File