realtimenetprots/sipfw/SIP/ConnectionMgr/src/TTlsTransTlsConnected.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          : TTlsTransTlsConnected.h
       
    16 * Part of       : ConnectionMgr
       
    17 * Version       : SIP/5.0 
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 /**
       
    25  @internalComponent
       
    26 */
       
    27 
       
    28 
       
    29 #ifndef TTLSTRANSTLSCONNECTED_H
       
    30 #define TTLSTRANSTLSCONNECTED_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 TTlsTransTlsConnected : public TTlsTransStateBase
       
    43 	{	    
       
    44 	public: // New functions
       
    45 	
       
    46 	    TTlsTransTlsConnected( MTlsTransStateOwner& aOwner, 
       
    47 	                           TInt aIdleTimeout );
       
    48 	
       
    49 	public: // From TTlsTransStateBase
       
    50 	
       
    51 	    void EnterL();
       
    52 	
       
    53 	    TBool DisconnectedL();
       
    54 	    
       
    55 	    void SendToNetL( const TSIPTransportParams& aParams,
       
    56                          const TInetAddr& aAddress, 
       
    57                          CSIPMessage& aMessage, 
       
    58                          TUint aOrigTransport,
       
    59                          TRequestStatus& aStatus );
       
    60 	
       
    61 	private:
       
    62 	
       
    63 	    TInt iIdleTimeout;
       
    64 	        
       
    65 	};
       
    66 	
       
    67 #endif // TTLSTRANSTLSCONNECTED_H
       
    68 
       
    69 // End of File